Skip to content

Commit

Permalink
Correct action output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Mar 29, 2023
1 parent fe1d7e2 commit 992cd89
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 @@ -29,7 +29,7 @@ runs:
[[ -z "$(shopt globstar 2> /dev/null)" ]] && echo 'Shell does not support globstar' || shopt -s globstar
: "${SUMMARY_FILE:=$GITHUB_STEP_SUMMARY}"
gawk --file "$GITHUB_ACTION_PATH/summary.gawk" --sandbox -- ${{ inputs.path }} >> "$SUMMARY_FILE"
echo "{summary-file}={$SUMMARY_FILE}" >> "$GITHUB_OUTPUT"
echo "summary-file=$SUMMARY_FILE" >> "$GITHUB_OUTPUT"
shell: bash
env:
SUMMARY_FILE: ${{ inputs.summary-file }}
Expand Down

0 comments on commit 992cd89

Please sign in to comment.