Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6s
26 lines
636 B
YAML
26 lines
636 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- glance/**
|
|
|
|
env:
|
|
app_folder: glance
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Execute remote SSH commands using password
|
|
uses: appleboy/ssh-action@v1
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: geezo
|
|
password: ${{ secrets.PASSWORD }}
|
|
port: ${{ secrets.PORT }}
|
|
script: |
|
|
cd /home/geezo/docker_containers/${{ env.app_folder }} && \
|
|
docker compose down \ |