Skip to content

Commit

Permalink
fix(ci): never skip successful builds check (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobslept authored Nov 30, 2023
1 parent 204bba3 commit 19d7851
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 @@ -206,9 +206,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 19d7851

Please sign in to comment.