Skip to content

Commit 3215bcb

Browse files
committed
Use native builds
1 parent 20fbb9a commit 3215bcb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ env:
1515
jobs:
1616
build-zsign:
1717
name: Build zsign (Darwin) & publish release assets
18-
runs-on: macos-13
18+
runs-on: ${{ matrix.os }}
1919

2020
strategy:
2121
matrix:
22-
arch: [arm64, x86_64]
22+
include:
23+
- os: macos-14
24+
arch: arm64
25+
- os: macos-13
26+
arch: x86_64
2327

2428
steps:
2529
- name: Checkout repository
2630
uses: actions/checkout@v3
2731

28-
2932
- name: Build zsign for ${{ matrix.arch }}
3033
shell: bash
3134
run: |

0 commit comments

Comments
 (0)