Skip to content

Commit

Permalink
Add step
Browse files Browse the repository at this point in the history
  • Loading branch information
katjuell committed Oct 1, 2024
1 parent 29c3b22 commit 142a427
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/presubmit-metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
- name: Output results
shell: bash
id: output-results
run: |
echo "Result: $(cat output_log.txt)" >> $GITHUB_OUTPUT
run: |
set -e
if [ -s output_log.txt ]; then
echo "Result: $(cat output_log.txt)" >> $GITHUB_OUTPUT
exit 1
fi

0 comments on commit 142a427

Please sign in to comment.