From d092bc32e216e5e51c62f9f61c889cc08bb74a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Sun, 17 Nov 2024 00:34:22 -0500 Subject: [PATCH] rsync without timestamp check for the deploy GitHub workflow 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. --- .github/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 85413d2..b709e9d 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -19,7 +19,7 @@ jobs: - name: Copy site to DigitalOcean uses: burnett01/rsync-deployments@7.0.1 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 }}