From 05e1bbfe41028b96f0960f51e61c5f8c860bc23e Mon Sep 17 00:00:00 2001 From: Stefan van Delft Date: Mon, 7 Oct 2024 13:47:04 +0200 Subject: [PATCH] fix(PAGE-4710): Remove unused zone from publish prod files. The nrfem does not exist anymore, and thus the azure blob account is not reachable. This caused the master-pipeline to crash when trying to publish to the zones. --- .github/workflows/publish_bundle_production.yml | 5 ----- .github/workflows/publish_production.yml | 5 ----- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/publish_bundle_production.yml b/.github/workflows/publish_bundle_production.yml index 8303c5258..9c2ba26cc 100644 --- a/.github/workflows/publish_bundle_production.yml +++ b/.github/workflows/publish_bundle_production.yml @@ -49,11 +49,6 @@ jobs: AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_NL4 }} AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_NL4 }} run: yarn upload-bundle - - name: upload nrfem - env: - AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_NRFEM }} - AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_NRFEM }} - run: yarn upload-bundle - name: upload us2 env: AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_US2 }} diff --git a/.github/workflows/publish_production.yml b/.github/workflows/publish_production.yml index c67d4c48b..63e6a6c8f 100644 --- a/.github/workflows/publish_production.yml +++ b/.github/workflows/publish_production.yml @@ -58,11 +58,6 @@ jobs: AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_NL4 }} AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_NL4 }} run: yarn upload - - name: upload nrfem - env: - AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_NRFEM }} - AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_NRFEM }} - run: yarn upload - name: upload us2 env: AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_US2 }}