Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
robzr committed Mar 22, 2024
1 parent e24baa9 commit e87fcd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e87fcd3

Please sign in to comment.