diff --git a/.github/workflows/deploy-eu-prod-web.yml b/.github/workflows/deploy-eu-prod-web.yml deleted file mode 100644 index 2c7835caef8..00000000000 --- a/.github/workflows/deploy-eu-prod-web.yml +++ /dev/null @@ -1,60 +0,0 @@ ---- -name: Deploy Web to EU-PRD Cloud - -on: - workflow_dispatch: - inputs: - tag: - description: "Branch name to deploy (examples: 'master', 'feature/sm')" - required: true - type: string - default: master - -jobs: - azure-deploy: - name: Deploy to Azure - runs-on: ubuntu-22.04 - env: - _WEB_ARTIFACT: "web-*-cloud-euprd.zip" - steps: - - name: Login to Azure - EU Subscription - uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7 - with: - creds: ${{ secrets.AZURE_KV_EU_PRD_SERVICE_PRINCIPAL }} - - - name: Retrieve Storage Account connection string - id: retrieve-secrets - uses: bitwarden/gh-actions/get-keyvault-secrets@main - with: - keyvault: webvault-westeurope-prod - secrets: "sa-bitwarden-web-vault-dev-key-temp" - - - name: Download latest cloud asset - uses: bitwarden/gh-actions/download-artifacts@main - with: - workflow: build-web.yml - path: apps/web - workflow_conclusion: success - branch: ${{ github.event.inputs.tag }} - artifacts: ${{ env._WEB_ARTIFACT }} - - - name: Unzip build asset - working-directory: apps/web - run: unzip ${{ env._WEB_ARTIFACT }} - - - name: Empty container in Storage Account - run: | - az storage blob delete-batch \ - --source '$web' \ - --pattern '*' \ - --connection-string "${{ steps.retrieve-secrets.outputs.sa-bitwarden-web-vault-dev-key-temp }}" - - - name: Deploy to Azure Storage Account - working-directory: apps/web - run: | - az storage blob upload-batch \ - --source "./build" \ - --destination '$web' \ - --connection-string "${{ steps.retrieve-secrets.outputs.sa-bitwarden-web-vault-dev-key-temp }}" \ - --overwrite \ - --no-progress