Skip to content

Commit c651935

Browse files
authored
save
1 parent 4f8b7ed commit c651935

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/10_Deploy-and-wait.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,22 @@ on:
66
branches:
77
- main
88

9+
env:
10+
ENV_NAME: test
11+
912
jobs:
1013

1114
deploy:
1215
name: Deploy
1316
uses: ./.github/workflows/09_Deploy.yaml
1417
with:
15-
environment: test
18+
environment: ${{ env.ENV_NAME }}
1619

1720
wait:
1821
name: Wait
1922
needs:
2023
- deploy
2124
uses: ./.github/workflows/08_Wait-for-deployment.yaml
2225
with:
23-
environment: test
26+
environment: ${{ env.ENV_NAME }}
2427
docker_tag: ${{ needs.deploy.outputs.docker_tag }}

0 commit comments

Comments
 (0)