Skip to content

Commit

Permalink
rsync without timestamp check for the deploy GitHub workflow
Browse files Browse the repository at this point in the history
Since all files for the website are regenerated each time the workflow run, they will always be considered new by rsync if the timestamp is considered.
  • Loading branch information
fharper committed Nov 17, 2024
1 parent 9d1590f commit d092bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Copy site to DigitalOcean
uses: burnett01/[email protected]
with:
switches: --delete --human-readable --ignore-errors --progress --recursive --stats --times --verbose
switches: --checksum --delete --human-readable --ignore-errors --progress --recursive --stats --times --verbose
path: public/
remote_path: ${{ secrets.SSH_PATH }}
remote_host: ${{ secrets.SSH_HOST }}
Expand Down

0 comments on commit d092bc3

Please sign in to comment.