diff --git a/.github/workflows/deploy-non-prod-web.yml b/.github/workflows/deploy-non-prod-web.yml index 972682de086..5e66ff7002b 100644 --- a/.github/workflows/deploy-non-prod-web.yml +++ b/.github/workflows/deploy-non-prod-web.yml @@ -13,6 +13,11 @@ on: - QA - EUQA - USPROD + tag: + description: "Branch name to deploy (examples: 'master', 'feature/sm')" + required: true + type: string + default: master workflow_call: inputs: @@ -235,14 +240,14 @@ jobs: runs-on: ubuntu-22.04 if: always() needs: - - cfpages-deploy + - azure-deploy - setup steps: - uses: bitwarden/gh-actions/report-deployment-status-to-slack@main with: project: Web - environment: US ${{ inputs.environment }} Cloud - tag: ${{ github.ref_name }} + environment: ${{ inputs.environment }} Cloud + tag: ${{ github.event.inputs.tag }} slack-channel: team-eng-qa-devops - failure: ${{ needs.cfpages-deploy.result == 'failure' }} + failure: ${{ needs.azure-deploy.result == 'failure' }} AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}