Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Commit 2b46ebf

Browse files
committed
chore: build aarch64-apple-darwin
1 parent f027603 commit 2b46ebf

File tree

6 files changed

+118
-107
lines changed

6 files changed

+118
-107
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,25 @@ jobs:
3939
run: npm run prod
4040
- name: Build Electron for Windows
4141
if: matrix.os == 'windows-latest'
42-
run: npm run make -- --publish=never --windows
42+
run: npm run make -- --windows
4343
- name: Build Electron for macOS
4444
if: matrix.os == 'macos-latest'
4545
env:
4646
CSC_LINK: ${{ secrets.CSC_LINK }}
4747
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
48-
run: npm run make -- --publish=never --macos
48+
run: npm run make -- --macos --x64
49+
- name: Build Webpack for Apple Silicon
50+
if: matrix.os == 'macos-latest'
51+
run: npm run prod-apple-darwin
52+
- name: Build Electron for macOS Apple Silicon
53+
if: matrix.os == 'macos-latest'
54+
env:
55+
CSC_LINK: ${{ secrets.CSC_LINK }}
56+
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
57+
run: npm run make -- --macos --arm64
4958
- name: Build Electron for Linux
5059
if: matrix.os == 'ubuntu-latest'
51-
run: npm run make -- --publish=never --linux
60+
run: npm run make -- --linux
5261
- name: Upload Artifact
5362
if: matrix.os == 'windows-latest'
5463
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)