From 44f09b32fac79c387681f6988e6c621fb0e1ad15 Mon Sep 17 00:00:00 2001 From: ab77 Date: Thu, 10 Nov 2022 14:33:10 -0800 Subject: [PATCH] Replace missing input Change-type: patch --- .github/actions/finalize/action.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/actions/finalize/action.yml b/.github/actions/finalize/action.yml index 04384a69..50c42d80 100644 --- a/.github/actions/finalize/action.yml +++ b/.github/actions/finalize/action.yml @@ -9,6 +9,11 @@ inputs: description: "JSON stringified object containing all the secrets from the calling workflow" required: true + # --- custom environment + VERBOSE: + type: string + default: "true" + runs: # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action using: "composite" @@ -27,13 +32,9 @@ 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 -a + set -ea [[ '${{ inputs.VERBOSE }}' =~ on|On|Yes|yes|true|True ]] && set -x