File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2323 uses : ./.github/workflows/lib-azure-deploy.yml
2424 with :
2525 work-dir : backend-integration
26+ environment : ${{ vars.BACKEND_INTEGRATION_ENV_NAME }}
2627 secrets :
2728 SELF_HOSTED_RUNNER_TOKEN : ${{ secrets.SELF_HOSTED_RUNNER_TOKEN }}
2829 AZURE_CLIENT_ID : ${{ vars.BACKEND_INTEGRATION_CLIENT_ID }}
Original file line number Diff line number Diff line change 66 work-dir :
77 required : true
88 type : string
9+ environment :
10+ required : true
11+ type : string
912
1013 secrets :
1114 SELF_HOSTED_RUNNER_TOKEN :
@@ -43,12 +46,12 @@ jobs:
4346 needs : [self-hosted-status]
4447 timeout-minutes : 10
4548 runs-on : ${{ contains(needs.self-hosted-status.outputs.runner-status, 'online') && 'self-hosted' || 'ubuntu-latest' }}
46- environment : ${{ secrets.AZURE_ENV_NAME }}
49+ environment : ${{ inputs.environment }}
4750 env :
4851 AZURE_CLIENT_ID : ${{ secrets.AZURE_CLIENT_ID }}
4952 AZURE_TENANT_ID : ${{ secrets.AZURE_TENANT_ID }}
5053 AZURE_SUBSCRIPTION_ID : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
51- AZURE_ENV_NAME : ${{ secrets.AZURE_ENV_NAME }}
54+ AZURE_ENV_NAME : ${{ inputs.environment }}
5255 AZURE_LOCATION : ${{ secrets.AZURE_LOCATION }}
5356
5457 steps :
You can’t perform that action at this time.
0 commit comments