Merge pull request #2560 from balena-io/ab77/operational

Just ignore errors during publish
This commit is contained in:
bulldozer-balena[bot] 2022-11-10 22:17:59 +00:00 committed by GitHub
commit ee1987f188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,12 +27,13 @@ runs:
# https://docs.github.com/en/rest/releases
- name: Finalize GitHub release
if: runner.os == 'Linux'
# FIXME: Process completed with exit code 141.
# https://stackoverflow.com/questions/54999974
# https://stackoverflow.com/questions/22464786
continue-on-error: true
shell: bash
run: |
set -ea
# https://stackoverflow.com/a/22464942/1559300
trap '' PIPE
set -a
[[ '${{ inputs.VERBOSE }}' =~ on|On|Yes|yes|true|True ]] && set -x