From 228b42f20744c511353d50a57a41c47e204cc399 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Tue, 21 Oct 2025 16:48:19 -0400 Subject: [PATCH] Escape dollar sign in URL (#16975) --- .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 4da674678b5..5aa0918048b 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -392,7 +392,7 @@ jobs: AZCOPY_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} _VAULT_NAME: ${{ steps.retrieve-secrets-azcopy.outputs.sa-bitwarden-web-vault-name }} run: | - azcopy sync ./build "https://$_VAULT_NAME.blob.core.windows.net/$web/" \ + azcopy sync ./build "https://$_VAULT_NAME.blob.core.windows.net/\$web/" \ --delete-destination="${{ inputs.force-delete-destination }}" --compare-hash="MD5" - name: Log out from Azure