From 64501a3cc8d44f46ab5602c181ffd811c4d7e1d2 Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Wed, 16 Mar 2022 14:30:53 -0700 Subject: [PATCH] Pass --overwrite when pushing build artifacts to azure --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f4f1dfff93..6119b8b5b2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -165,7 +165,7 @@ jobs: curl -L https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - sudo apt-get install apt-transport-https sudo apt-get update && sudo apt-get install azure-cli - az storage blob upload-batch --destination "releases" --source "$(System.ArtifactsDirectory)/deployment/" --account-name roslynomnisharp --account-key $BLOB_KEY + az storage blob upload-batch --destination "releases" --source "$(System.ArtifactsDirectory)/deployment/" --overwrite --account-name roslynomnisharp --account-key $BLOB_KEY displayName: Upload to Azure Storage condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) env: