We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f8b7ed commit c651935Copy full SHA for c651935
.github/workflows/10_Deploy-and-wait.yaml
@@ -6,19 +6,22 @@ on:
6
branches:
7
- main
8
9
+env:
10
+ ENV_NAME: test
11
+
12
jobs:
13
14
deploy:
15
name: Deploy
16
uses: ./.github/workflows/09_Deploy.yaml
17
with:
- environment: test
18
+ environment: ${{ env.ENV_NAME }}
19
20
wait:
21
name: Wait
22
needs:
23
- deploy
24
uses: ./.github/workflows/08_Wait-for-deployment.yaml
25
26
27
docker_tag: ${{ needs.deploy.outputs.docker_tag }}
0 commit comments