File tree 3 files changed +4
-10
lines changed
3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 11
11
matrix :
12
12
include :
13
13
- os : ubuntu-latest
14
- arch : x64
15
- - os : ubuntu-latest
16
- arch : arm64
17
14
- os : windows-latest
18
- arch : x64
19
- - os : macos-latest
20
- arch : x64
21
15
- os : macos-latest
22
- arch : arm64
23
16
24
17
runs-on : ${{ matrix.os }}
25
18
@@ -42,12 +35,12 @@ jobs:
42
35
run : npm run build
43
36
44
37
- name : Package App
45
- run : npx electron-builder --publish never --${{ matrix.arch }}
38
+ run : npx electron-builder --publish never --arm64 --x64
46
39
47
40
- name : Upload Artifacts
48
41
uses : actions/upload-artifact@v4
49
42
with :
50
- name : Artifacts-${{ runner.os }}-${{ matrix.arch }}
43
+ name : Artifacts-${{ runner.os }}
51
44
path : |
52
45
release-builds/*.msi
53
46
release-builds/*.zip
Original file line number Diff line number Diff line change 1
1
appId : " com.phlhar.stream-monitor"
2
2
productName : " Stream Monitor"
3
+ artifactName : " ${name}-${version}-${os}-${arch}.${ext}"
3
4
mac :
4
5
icon : " icon/icon.ico"
5
6
target : ["dmg", "zip"]
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function createMainWindow() {
56
56
height : 1080 ,
57
57
webPreferences : {
58
58
preload : path . join ( __dirname , "preload.js" ) ,
59
- devTools : ! app . isPackaged ,
59
+ /* devTools: !app.isPackaged, */
60
60
} ,
61
61
} ) ;
62
62
You can’t perform that action at this time.
0 commit comments