We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa2ebd2 commit 53fd6a7Copy full SHA for 53fd6a7
.github/workflows/electron.yml
@@ -17,7 +17,13 @@ jobs:
17
18
strategy:
19
matrix:
20
- os: [macos-latest, windows-latest]
+ include:
21
+ - os: macos-latest
22
+ arch: arm64
23
24
+ arch: x64
25
+ - os: windows-latest
26
27
28
steps:
29
- name: Check out Git repository
@@ -39,4 +45,5 @@ jobs:
39
45
- name: Publish using Electron Forge
40
46
env:
41
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
+ npm_config_arch: ${{ matrix.arch }}
42
49
run: yarn run publish
0 commit comments