We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 211fb43 commit fe7cfe9Copy full SHA for fe7cfe9
.github/workflows/deploy.yaml
@@ -11,19 +11,28 @@ on:
11
- master
12
13
jobs:
14
+ deploy_prod3:
15
+ name: Deploy prod3
16
+ uses: ./.github/workflows/deploy_syslog.yaml
17
+ with:
18
+ environment: prod3
19
+ secrets: inherit
20
+ #if: github.ref == 'refs/heads/master'
21
+
22
deploy_prod2:
23
name: Deploy prod2
24
uses: ./.github/workflows/deploy_syslog.yaml
25
with:
26
environment: prod2
27
secrets: inherit
28
+ needs: deploy_prod3
29
#if: github.ref == 'refs/heads/master'
30
- deploy_prod3:
- name: Deploy prod3
31
+deploy_prod1:
32
+ name: Deploy prod1
33
34
- environment: prod3
35
+ environment: prod1
36
37
needs: deploy_prod2
38
0 commit comments