Skip to content

Commit

Permalink
Fix post-build required check not triggering
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-bcl committed Nov 8, 2024
1 parent f1483d6 commit c2c54c4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
if: always()
steps:
- name: Check build matrix status
if: ${{ needs.build.result != 'success' }}
run: exit 1
run: exit ${{ needs.build.result == 'success' && 0 || 1 }}

analyse:
name: Analyse
Expand Down

0 comments on commit c2c54c4

Please sign in to comment.