Skip to content

Commit

Permalink
chore(ci): fix merging with failed jobs (#197)
Browse files Browse the repository at this point in the history
Fixes: #191
  • Loading branch information
bsherman committed Feb 19, 2024
1 parent 163c36b commit 055ba7a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,14 @@ jobs:
check:
name: Check all builds successful
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
needs: [push-ghcr]
steps:
- name: Exit on failure
if: ${{ needs.push-ghcr.result == 'failure' }}
shell: bash
run: exit 1
- name: Exit
shell: bash
run: exit 0

0 comments on commit 055ba7a

Please sign in to comment.