From 39e9997d9e0a8622d0fc255afe508131a33a9123 Mon Sep 17 00:00:00 2001 From: ab77 Date: Thu, 10 Nov 2022 13:19:11 -0800 Subject: [PATCH] Just ignore errors during publish Change-type: patch --- .github/actions/finalize/action.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/finalize/action.yml b/.github/actions/finalize/action.yml index 880fef4a..04384a69 100644 --- a/.github/actions/finalize/action.yml +++ b/.github/actions/finalize/action.yml @@ -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