File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ${{ matrix.os }}
14
14
strategy :
15
15
matrix :
16
- os : [ubuntu-latest, windows-latest, macos-latest]
17
- architecture : [arm64, x64]
16
+ include :
17
+ - os : macos-latest
18
+ name : darwin
19
+ arch : x64
20
+ - os : macos-latest
21
+ name : darwin
22
+ arch : arm64
23
+ - os : windows-latest
24
+ name : win32
25
+ arch : x64
26
+ - os : ubuntu-latest
27
+ name : linux
28
+ arch : x64
29
+ - os : ubuntu-latest
30
+ name : linux
31
+ arch : arm64
18
32
fail-fast : false
19
33
steps :
20
34
- name : Checkout Repository
48
62
APPLE_PASSWORD : ${{ secrets.APPLE_PASSWORD }}
49
63
APPLE_TEAM_ID : ${{ secrets.APPLE_TEAM_ID }}
50
64
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
51
- run : npm run electron:publish
65
+ run : npm run electron:publish -- --platform=${{ matrix.name }} --arch=${{ matrix.arch }}
Original file line number Diff line number Diff line change @@ -62,7 +62,8 @@ module.exports = {
62
62
owner : 'one-click-studio' ,
63
63
name : 'gabin'
64
64
} ,
65
- prerelease : true
65
+ prerelease : true ,
66
+ force : true
66
67
}
67
68
}
68
69
]
You can’t perform that action at this time.
0 commit comments