From 06993594ccf2c8c5a7d613b0002c92eabe18af39 Mon Sep 17 00:00:00 2001 From: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com> Date: Wed, 6 Mar 2024 07:22:37 -0800 Subject: [PATCH] azcopy - Switch hash comparison from timestamp (#8218) * Switch from timestamp to hash comparison * Switch flag placement * Add a value to the --compare-hash option * Setting compare-hash to a string value * undo debug default --- .github/workflows/deploy-web.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml index 040ad3f1b3..aacef42b82 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -297,7 +297,7 @@ jobs: AZCOPY_TENANT_ID: ${{ steps.retrieve-secrets-azcopy.outputs.sp-bitwarden-web-vault-tenant }} run: | azcopy sync ./build 'https://${{ steps.retrieve-secrets-azcopy.outputs.sa-bitwarden-web-vault-name }}.blob.core.windows.net/$web/' \ - --delete-destination=${{ needs.setup.outputs.sync-delete-destination-files }} + --delete-destination=${{ needs.setup.outputs.sync-delete-destination-files }} --compare-hash="MD5" - name: Debug sync logs if: ${{ inputs.debug }}