From a019302396e1977292915e0921d8553067d11e35 Mon Sep 17 00:00:00 2001 From: Administrator Date: Mon, 28 Oct 2024 17:33:05 -0600 Subject: [PATCH] ship to 3 instead --- .github/workflows/build-deploy-frontend.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-deploy-frontend.yml b/.github/workflows/build-deploy-frontend.yml index 4874db60..8d848cd1 100644 --- a/.github/workflows/build-deploy-frontend.yml +++ b/.github/workflows/build-deploy-frontend.yml @@ -23,7 +23,7 @@ on: env: demo-blob-name: - deploy-env: dev4 + deploy-env: dev3 permissions: contents: read @@ -49,7 +49,7 @@ jobs: - name: Install NPM packages run: npm ci - name: Build project - run: VITE_API_URL='https://reportvision-ocr-dev4.azurewebsites.net/' npm run build + run: VITE_API_URL='https://reportvision-ocr-dev3.azurewebsites.net/' npm run build - name: Run unit tests run: npm run test - name: Create client build archive @@ -67,7 +67,7 @@ jobs: deploy: name: Deploy runs-on: ubuntu-latest - environment: dev4 + environment: dev3 needs: [build] steps: - name: Download Artifacts To Job @@ -91,7 +91,7 @@ jobs: shell: bash run: | if [ -z "${{ env.demo-blob-name }}" ]; then - az storage blob upload-batch --account-name reportvisionfrontenddev4 -d '$web' -s client-build/ --overwrite + az storage blob upload-batch --account-name reportvisionfrontenddev3 -d '$web' -s client-build/ --overwrite else az storage blob upload-batch --account-name ${{ env.demo-blob-name }} -d '$web' -s client-build/ --overwrite fi