From b3a30d27857b17bab64e23cdc2e9c00bebbe2a59 Mon Sep 17 00:00:00 2001 From: Vitalij Vascenko Date: Mon, 27 Jan 2025 15:17:34 +0100 Subject: [PATCH] ci: Fix logging steps --- .github/workflows/clean-azure-blob.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clean-azure-blob.yml b/.github/workflows/clean-azure-blob.yml index 488c97ed..4c8ac8ce 100644 --- a/.github/workflows/clean-azure-blob.yml +++ b/.github/workflows/clean-azure-blob.yml @@ -25,7 +25,7 @@ jobs: uses: azure/CLI@v2 with: inlineScript: | - az storage blob list --account-name ${{ secrets.AZURE_ACCOUNT_NAME }} --container-name mews-ui-widgetbook --output table + az storage blob list --account-name ${{ secrets.AZURE_ACCOUNT_NAME }} --auth-mode login --container-name mews-ui-widgetbook --output table - name: Clean Widgetbook blob folder uses: azure/CLI@v2 @@ -37,4 +37,4 @@ jobs: uses: azure/CLI@v2 with: inlineScript: | - az storage blob list --account-name ${{ secrets.AZURE_ACCOUNT_NAME }} --container-name mews-ui-widgetbook --output table + az storage blob list --account-name ${{ secrets.AZURE_ACCOUNT_NAME }} --auth-mode login --container-name mews-ui-widgetbook --output table