Skip to content

Commit

Permalink
update deploy GitHub workflow to use rsync instead
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper committed Nov 16, 2024
1 parent e4bff4c commit 923ac61
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ jobs:
run: yarn build

- name: Copy site to DigitalOcean
uses: garygrossgarten/[email protected]
uses: burnett01/[email protected]
with:
local: public
remote: ${{ secrets.SSH_PATH }}
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
privateKey: ${{ secrets.SSH_KEY }}
switches: --delete --human-readable --ignore-errors --progress --recursive --stats --times --verbose --dry-run
path: public/
remote_path: ${{ secrets.SSH_PATH }}
remote_host: ${{ secrets.SSH_HOST }}
remote_user: ${{ secrets.SSH_USERNAME }}
remote_key: ${{ secrets.SSH_KEY }}

0 comments on commit 923ac61

Please sign in to comment.