Skip to content

Commit adc504d

Browse files
committed
fix review
1 parent f571f44 commit adc504d

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/build_release.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,19 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-20.04, macos-14, windows-latest]
18+
include:
19+
- os: ubuntu-20.04
20+
arch: x86_64
21+
name: linux-x64
22+
- os: ubuntu-24.04-arm64
23+
arch: aarch64
24+
name: linux-arm64
25+
- os: macos-14
26+
arch: aarch64
27+
name: macos-arm64
28+
- os: windows-latest
29+
arch: x86_64
30+
name: windows-x64
1931
defaults:
2032
run:
2133
shell: bash
@@ -29,7 +41,7 @@ jobs:
2941

3042
- name: install ninja (linux)
3143
run: sudo apt-get install ninja-build
32-
if: startsWith(matrix.os, 'ubuntu-')
44+
if: contains(matrix.os, 'ubuntu')
3345

3446
- name: install ninja (osx)
3547
run: brew install ninja
@@ -60,7 +72,7 @@ jobs:
6072

6173
- uses: ./.github/actions/release-archive
6274
with:
63-
os: ${{ matrix.os }}
75+
os: ${{ matrix.name }}
6476
upload_to_release: true
6577

6678
build-wasi:

0 commit comments

Comments
 (0)