We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fail
false
1 parent a92a07d commit c706bceCopy full SHA for c706bce
1 file changed
entrypoint.sh
@@ -73,6 +73,9 @@ echo "exit_code=$exit_code" >> $GITHUB_OUTPUT
73
# If `fail` is set to `true` (and it is by default), propagate the real exit
74
# value to the workflow runner. This will cause the pipeline to fail on
75
# `exit != # 0`.
76
+# Otherwise, always exit cleanly with status code 0.
77
if [ "$INPUT_FAIL" = true ] ; then
78
exit ${exit_code}
79
+else
80
+ exit 0
81
fi
0 commit comments