Skip to content

Commit cddf198

Browse files
committed
fix: disable arm build for windows
1 parent 8ce365a commit cddf198

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ jobs:
1111
matrix:
1212
include:
1313
- os: ubuntu-latest
14+
arch: "--arm64 --x64"
1415
- os: windows-latest
16+
arch: "--x64"
1517
- os: macos-latest
18+
arch: "--arm64 --x64"
1619

1720
runs-on: ${{ matrix.os }}
1821

@@ -35,7 +38,7 @@ jobs:
3538
run: npm run build
3639

3740
- name: Package App
38-
run: npx electron-builder --publish never --arm64 --x64
41+
run: npx electron-builder --publish never ${{ matrix.arch }}
3942

4043
- name: Upload Artifacts
4144
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)