diff --git a/.gitea/workflows/deploy-to-druid.yml b/.gitea/workflows/deploy-to-druid.yml index 86cd9c0..db5a33c 100644 --- a/.gitea/workflows/deploy-to-druid.yml +++ b/.gitea/workflows/deploy-to-druid.yml @@ -6,10 +6,10 @@ on: - 'druid/**' jobs: - Deploy-to-Druid: + Deploy: runs-on: druid steps: - - name: Pull latest code onto Druid via SSH + - name: Pull latest code onto host via SSH uses: appleboy/ssh-action@master with: host: ${{ vars.SSH_HOST_IP_DRUID }} # this is a LAN IP diff --git a/.gitea/workflows/deploy-to-fighter.yml b/.gitea/workflows/deploy-to-fighter.yml index 0c7d045..1daab14 100644 --- a/.gitea/workflows/deploy-to-fighter.yml +++ b/.gitea/workflows/deploy-to-fighter.yml @@ -6,10 +6,10 @@ on: - 'fighter/**' jobs: - Deploy-to-Fighter: + Deploy: runs-on: fighter steps: - - name: Pull latest code onto Fighter via SSH + - name: Pull latest code onto host via SSH uses: appleboy/ssh-action@master with: host: ${{ vars.SSH_HOST_IP_FIGHTER }} # this is a LAN IP diff --git a/.gitea/workflows/deploy-to-wizard.yml b/.gitea/workflows/deploy-to-wizard.yml index 24161a9..e2e41fb 100644 --- a/.gitea/workflows/deploy-to-wizard.yml +++ b/.gitea/workflows/deploy-to-wizard.yml @@ -6,10 +6,10 @@ on: - 'wizard/**' jobs: - Deploy-to-Wizard: + Deploy: runs-on: fighter steps: - - name: Pull latest code onto Wizard via SSH + - name: Pull latest code onto host via SSH uses: appleboy/ssh-action@master with: host: ${{ vars.SSH_HOST_IP_WIZARD }} # this is a LAN IP