Skip to content

Commit 22cfe0e

Browse files
authored
Removed debug (#10)
1 parent b6f7eef commit 22cfe0e

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

.github/workflows/build-deploy-backend.yml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)