From 3c499aeea57f179a3abde2e82cc56a2579fd6160 Mon Sep 17 00:00:00 2001 From: hakon-molven-4ss <70759227+hakon-molven-4ss@users.noreply.github.com> Date: Thu, 23 Oct 2025 15:34:19 +0200 Subject: [PATCH] Temporary fix for azure cli bug --- .github/workflows/deploy_public.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy_public.yaml b/.github/workflows/deploy_public.yaml index 7b85cc8d..c309d3ab 100644 --- a/.github/workflows/deploy_public.yaml +++ b/.github/workflows/deploy_public.yaml @@ -121,6 +121,7 @@ jobs: env: AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.FOURINSIGHTTEST_DOC_BLOB_CONNSTR }} with: + azcliversion: 2.76.0 # Can be removed when this issue is fixed. https://github.com/Azure/azure-cli/issues/32039 inlineScript: | az storage blob upload-batch -d "\$web" -s ./build/html --destination-path "$REPO_NAME_SHORT/python/docs/$VERSION_NUMBER" @@ -130,6 +131,7 @@ jobs: env: AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.FOURINSIGHTTEST_DOC_BLOB_CONNSTR }} with: + azcliversion: 2.76.0 # Can be removed when this issue is fixed. https://github.com/Azure/azure-cli/issues/32039 inlineScript: | az storage blob delete-batch -s "\$web" --pattern "$REPO_NAME_SHORT/python/docs/latest/*" az storage blob upload-batch -d "\$web" -s ./build/html --destination-path "$REPO_NAME_SHORT/python/docs/latest" @@ -163,6 +165,7 @@ jobs: env: AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.FOURINSIGHTPROD_DOC_BLOB_CONNSTR }} with: + azcliversion: 2.76.0 # Can be removed when this issue is fixed. https://github.com/Azure/azure-cli/issues/32039 inlineScript: | az storage blob upload-batch -d "\$web" -s ./build/html --destination-path "$REPO_NAME_SHORT/python/docs/$VERSION_NUMBER" @@ -172,6 +175,7 @@ jobs: env: AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.FOURINSIGHTPROD_DOC_BLOB_CONNSTR }} with: + azcliversion: 2.76.0 # Can be removed when this issue is fixed. https://github.com/Azure/azure-cli/issues/32039 inlineScript: | az storage blob delete-batch -s "\$web" --pattern "$REPO_NAME_SHORT/python/docs/latest/*" az storage blob upload-batch -d "\$web" -s ./build/html --destination-path "$REPO_NAME_SHORT/python/docs/latest"