diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 80d701ac1..84f2f4de6 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -57,15 +57,23 @@ jobs: echo "::error ::Tag ${{ github.event.inputs.tag }} cannot be found in releases" exit 1 - - name: Trigger Deployment to ${{github.event.inputs.environment}} - uses: ./.github/workflows/actions/deploy - id: deploy - with: - environment: "${{github.event.inputs.environment}}" - sha: "${{steps.tag_id.outputs.release_sha}}" - AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }} - KEY_VAULT: ${{ secrets.KEY_VAULT }} - ARM_ACCESS_KEY: ${{ secrets.ARM_ACCESS_KEY }} + # - name: Trigger Deployment to ${{github.event.inputs.environment}} + # uses: ./.github/workflows/actions/deploy + # id: deploy + # with: + # environment: "${{github.event.inputs.environment}}" + # sha: "${{steps.tag_id.outputs.release_sha}}" + # AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }} + # KEY_VAULT: ${{ secrets.KEY_VAULT }} + # ARM_ACCESS_KEY: ${{ secrets.ARM_ACCESS_KEY }} + + - name: Trigger Deployment to ${{github.event.inputs.environment}} + uses: ./.github/workflows/actions/deploy_v2 + id: deploy + with: + environment: "${{github.event.inputs.environment}}" + sha: "${{steps.tag_id.outputs.release_sha}}" + azure-credentials: ${{ secrets.AZURE_CREDENTIALS }} - name: Slack Release Notification if: steps.tag_id.outputs.release_id && github.event.inputs.environment == 'Production'