We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c142d8 commit eeafd4dCopy full SHA for eeafd4d
.github/actions/deployment-reporting/action.yaml
@@ -18,7 +18,7 @@ runs:
18
with:
19
name: manifests.yaml
20
path: manifests.yaml
21
-
+
22
- name: Notify deployment end
23
uses: bobheadxi/deployments@v1
24
if: ${{ env.DEPLOYMENT_OK == 'true' }}
@@ -34,3 +34,12 @@ runs:
34
uses: socialgouv/kontinuous/.github/actions/debug-manifests@v1.96.10
35
36
token: ${{ inputs.token }}
37
38
+ - name: Report pipeline status
39
+ shell: bash
40
+ run: |
41
+ if [ "$DEPLOYMENT_OK" != "true" ]; then
42
+ echo "Pipeline failed"
43
+ echo 'see "Kontinupus Pipeline" step to inspect full logs'
44
+ exit 1
45
+ fi
0 commit comments