4444 # -----------------------------------------------------------------------------------------------
4545 # (3/8) Build & Test base
4646 # -----------------------------------------------------------------------------------------------
47- base :
47+ build- base :
4848 needs :
4949 - configure
5050 uses : devilbox/github-actions/.github/workflows/docker-multistage-build.yml@master
@@ -57,10 +57,10 @@ jobs:
5757 stage : base
5858 stage_prev : ' '
5959
60- base- test :
60+ test-base :
6161 needs :
6262 - configure
63- - base
63+ - build- base
6464 uses : devilbox/github-actions/.github/workflows/docker-multistage-test.yml@master
6565 with :
6666 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -72,10 +72,10 @@ jobs:
7272 # -----------------------------------------------------------------------------------------------
7373 # (4/8) Build & Test mods
7474 # -----------------------------------------------------------------------------------------------
75- mods :
75+ build- mods :
7676 needs :
7777 - configure
78- - base
78+ - build- base
7979 uses : devilbox/github-actions/.github/workflows/docker-multistage-build.yml@master
8080 with :
8181 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -86,10 +86,10 @@ jobs:
8686 stage : mods
8787 stage_prev : base
8888
89- mods- test :
89+ test-mods :
9090 needs :
9191 - configure
92- - mods
92+ - build- mods
9393 uses : devilbox/github-actions/.github/workflows/docker-multistage-test.yml@master
9494 with :
9595 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -101,10 +101,10 @@ jobs:
101101 # -----------------------------------------------------------------------------------------------
102102 # (5/8) Build & Test prod
103103 # -----------------------------------------------------------------------------------------------
104- prod :
104+ build- prod :
105105 needs :
106106 - configure
107- - mods
107+ - build- mods
108108 uses : devilbox/github-actions/.github/workflows/docker-multistage-build.yml@master
109109 with :
110110 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -115,10 +115,10 @@ jobs:
115115 stage : prod
116116 stage_prev : mods
117117
118- prod- test :
118+ test-prod :
119119 needs :
120120 - configure
121- - prod
121+ - build- prod
122122 uses : devilbox/github-actions/.github/workflows/docker-multistage-test.yml@master
123123 with :
124124 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -130,10 +130,10 @@ jobs:
130130 # -----------------------------------------------------------------------------------------------
131131 # (6/8) Build & Test work
132132 # -----------------------------------------------------------------------------------------------
133- work :
133+ build- work :
134134 needs :
135135 - configure
136- - prod
136+ - build- prod
137137 uses : devilbox/github-actions/.github/workflows/docker-multistage-build.yml@master
138138 with :
139139 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -144,10 +144,10 @@ jobs:
144144 stage : work
145145 stage_prev : prod
146146
147- work- test :
147+ test-work :
148148 needs :
149149 - configure
150- - work
150+ - build- work
151151 uses : devilbox/github-actions/.github/workflows/docker-multistage-test.yml@master
152152 with :
153153 has_refs : ${{ needs.configure.outputs.has_refs == 'true' }}
@@ -162,10 +162,10 @@ jobs:
162162 push-base :
163163 needs :
164164 - configure
165- - base- test
166- - prod- test
167- - mods- test
168- - work- test
165+ - test-base
166+ - test-prod
167+ - test-mods
168+ - test-work
169169 uses : devilbox/github-actions/.github/workflows/docker-multistage-push-image.yml@master
170170 with :
171171 can_deploy : ${{ needs.configure.outputs.can_login == 'true' && needs.configure.outputs.can_push == 'true' }}
@@ -180,10 +180,10 @@ jobs:
180180 push-mods :
181181 needs :
182182 - configure
183- - base- test
184- - prod- test
185- - mods- test
186- - work- test
183+ - test-base
184+ - test-prod
185+ - test-mods
186+ - test-work
187187 uses : devilbox/github-actions/.github/workflows/docker-multistage-push-image.yml@master
188188 with :
189189 can_deploy : ${{ needs.configure.outputs.can_login == 'true' && needs.configure.outputs.can_push == 'true' }}
@@ -198,10 +198,10 @@ jobs:
198198 push-prod :
199199 needs :
200200 - configure
201- - base- test
202- - prod- test
203- - mods- test
204- - work- test
201+ - test-base
202+ - test-prod
203+ - test-mods
204+ - test-work
205205 uses : devilbox/github-actions/.github/workflows/docker-multistage-push-image.yml@master
206206 with :
207207 can_deploy : ${{ needs.configure.outputs.can_login == 'true' && needs.configure.outputs.can_push == 'true' }}
@@ -216,10 +216,10 @@ jobs:
216216 push-work :
217217 needs :
218218 - configure
219- - base- test
220- - prod- test
221- - mods- test
222- - work- test
219+ - test-base
220+ - test-prod
221+ - test-mods
222+ - test-work
223223 uses : devilbox/github-actions/.github/workflows/docker-multistage-push-image.yml@master
224224 with :
225225 can_deploy : ${{ needs.configure.outputs.can_login == 'true' && needs.configure.outputs.can_push == 'true' }}
0 commit comments