We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8795160 commit 4a542b9Copy full SHA for 4a542b9
1 file changed
.github/workflows/release.yml
@@ -23,6 +23,8 @@ jobs:
23
build-macos:
24
uses: ./.github/workflows/build-macos.yml
25
secrets: inherit
26
+ # Continue even if macOS build fails (e.g., missing Apple signing secrets in forks)
27
+ continue-on-error: true
28
29
build-windows:
30
uses: ./.github/workflows/build-windows.yml
@@ -32,6 +34,8 @@ jobs:
32
34
create-release:
33
35
name: Create Release
36
needs: [build-linux, build-macos, build-windows]
37
+ # Run even if macOS build failed
38
+ if: always() && needs.build-linux.result == 'success' && needs.build-windows.result == 'success'
39
runs-on: ubuntu-latest
40
41
steps:
0 commit comments