Feature was not working when swarm folder only had one file. This is … #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Staging | |
on: | |
push: | |
branches: | |
- staging | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ vars.STAGING_SERVER_HOST }} | |
username: deploy | |
key: ${{ secrets.STAGING_SSH_PRIVATE_KEY }} | |
script: bash deploy |