Skip to content

Commit

Permalink
Let workflow fail if nested jobs were canceled.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Dec 16, 2024
1 parent f735320 commit 149cf80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ jobs:
steps:
- name: Check for success
run: |-
if [[ "${{ needs.test_release.result }}" == "failure" ]]; then
if [[ "${{ needs.test_release.result }}" != "success" ]]; then
exit 1
fi

0 comments on commit 149cf80

Please sign in to comment.