fix: add a graceful exit

This commit is contained in:
Tom Hu
2024-12-05 22:17:11 -03:00
parent 7f8b4b4bde
commit f7fa523f5c

View File

@@ -264,3 +264,8 @@ runs:
CC_VERBOSE: ${{ inputs.verbose }}
CC_VERSION: ${{ inputs.version }}
CC_YML_PATH: ${{ inputs.codecov_yml_path }}
- name: Gracefully exit
if: ${{ !cancelled() }} && ${{ inputs.fail_ci_if_error }} == "true"
shell: bash
run: exit 0