Commit b74e83c
committed
🤖 perf: skip code signing in PR/merge_group builds for parallel macOS builds
The macOS build was taking 24+ minutes because code signing was enabled
for merge_group events (condition was 'event_name != pull_request').
This forced sequential x64+arm64 builds to avoid keychain race conditions.
Changed the condition to only enable signing for workflow_dispatch (manual
testing). PRs and merge_group now build both architectures in parallel.
- Before: 24m40s (sequential with signing)
- After: ~4m (parallel, no signing)
Releases still get proper signing via release.yml (triggered by tag publish).
Generated with mux1 parent 35ad55b commit b74e83c
1 file changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
22 | | - | |
23 | | - | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments