From e87fcd3db2292728c5d4b26a906113eaa9c93b78 Mon Sep 17 00:00:00 2001 From: Rob Zwissler Date: Thu, 21 Mar 2024 18:05:26 -0700 Subject: [PATCH] update action --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 67c9e59..25e34f5 100644 --- a/action.yaml +++ b/action.yaml @@ -726,7 +726,7 @@ runs: if ${{ inputs.input-command == '' && 'false' || 'true' }} ; then INPUT_FILE=$(mktemp) echo '::group::Run input-command' - ${{ inputs.input-command }} | tee "${INPUT_FILE}" + ${{ inputs.input-command == '' && true || inputs.input-command }} | tee "${INPUT_FILE}" echo '::endgroup::' elif ${{ inputs.input == '' && 'false' || 'true' }} ; then INPUT_FILE=$(mktemp)