Merge pull request #1 from mbeijen/claude/fix-encoding #2
This file contains hidden or 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: Deploy to VPS | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Deploy files | |
| run: | | |
| # Sync directory contents to target location | |
| rsync -av --delete . /srv/jservice | |
| cd /srv/jservice | |
| bundle install | |