Skip to content

Commit

Permalink
Try finishing build even when macOS builds skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Sep 8, 2024
1 parent fe89d36 commit 0d156f4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/uberjar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,13 @@ jobs:

needs:
- build_dmg
- build_msi
- build_intel_dmg
- build_msi
if: |
always() &&
(needs.build_msi.result == 'success') &&
(needs.build_dmg.result == 'success' || needs.build_dmg.result == 'skipped') &&
(needs.build_intel_dmg.result == 'success' || needs.build_intel_dmg.result == 'skipped')
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 0d156f4

Please sign in to comment.