File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,11 @@ jobs:
26
26
- name : Build
27
27
run : yarn build
28
28
29
- - name : Make macOS x64 (electron-builder)
29
+ - name : Make macOS (electron-builder)
30
30
env :
31
31
CSC_LINK : ${{ secrets.mac_certs }}
32
32
CSC_KEY_PASSWORD : ${{ secrets.mac_certs_password }}
33
- run : yarn make:macos:x64 --publish=never -c.mac.identity=null
34
-
35
- - name : Make macOS arm64 (electron-builder)
36
- env :
37
- CSC_LINK : ${{ secrets.mac_certs }}
38
- CSC_KEY_PASSWORD : ${{ secrets.mac_certs_password }}
39
- run : yarn make:macos:arm64 --publish=never -c.mac.identity=null
33
+ run : yarn make:macos --publish=never -c.mac.identity=null
40
34
41
35
- name : Clean up builds
42
36
run : rm -rfv dist/mac dist/mac-arm64
Original file line number Diff line number Diff line change 40
40
CSC_KEY_PASSWORD : ${{ secrets.mac_certs_password }}
41
41
GH_TOKEN : ${{ secrets.gh_token }}
42
42
NOTARIZE : true
43
- run : |
44
- yarn make:macos:x64 --publish onTagOrDraft
45
- yarn make:macos:arm64 --publish onTagOrDraft
43
+ run : yarn make:macos --publish onTagOrDraft
46
44
47
45
release-windows :
48
46
runs-on : windows-2019
Original file line number Diff line number Diff line change 7
7
"build" : " webpack --config webpack.prod.js" ,
8
8
"watch" : " webpack --config webpack.common.js --watch" ,
9
9
"make:linux" : " electron-builder --linux" ,
10
+ "make:macos" : " electron-builder --mac --x64 --arm64" ,
10
11
"make:macos:x64" : " electron-builder --mac --x64" ,
11
12
"make:macos:arm64" : " electron-builder --mac --arm64" ,
12
13
"make:win" : " electron-builder --win" ,
You can’t perform that action at this time.
0 commit comments