File tree Expand file tree Collapse file tree 1 file changed +1
-22
lines changed
Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change @@ -111,13 +111,6 @@ jobs:
111111 resource : dev-backend
112112 secrets : inherit
113113
114- debug1 :
115- needs : [deploy-development]
116- runs-on : ubuntu-latest
117- steps :
118- - name : Debug
119- run : |
120- ${{ toJson(github) }} >> $GITHUB_STEP_SUMMARY
121114
122115 deploy-stage :
123116 if : ${{ github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'Stage') }}
@@ -130,13 +123,6 @@ jobs:
130123 resource : stage-backend
131124 secrets : inherit
132125
133- debug2 :
134- needs : [deploy-stage]
135- runs-on : ubuntu-latest
136- steps :
137- - name : Debug
138- run : |
139- ${{ toJson(github) }} >> $GITHUB_STEP_SUMMARY
140126
141127 semver-tag :
142128 needs : [build,deploy-stage]
@@ -171,6 +157,7 @@ jobs:
171157 run : |
172158 kosli assert artifact --fingerprint ${{ needs.build.outputs.fingerprint }}
173159
160+
174161 deploy-production :
175162 if : ${{ (github.event_name != 'workflow_dispatch' && needs.semver-tag.outputs.release-to-prod == 'true') }}
176163 needs : [build,deploy-stage,semver-tag,assert-artifact]
@@ -181,11 +168,3 @@ jobs:
181168 version : ${{ needs.build.outputs.image-version }}
182169 resource : prod-backend
183170 secrets : inherit
184-
185- debug3 :
186- needs : [deploy-production]
187- runs-on : ubuntu-latest
188- steps :
189- - name : Debug
190- run : |
191- ${{ toJson(github) }} >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments