File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,14 @@ jobs:
12
12
- uses : actions/checkout@v4
13
13
- name : install dependencies
14
14
run : npm install
15
- - name : build and publish
15
+ - name : build and publish x64
16
16
env :
17
17
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
18
run : npx electron-forge publish --platform linux --arch=x64
19
+ - name : build and publish armhf
20
+ env :
21
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
+ run : npx electron-forge publish --platform linux --arch=armv7l
19
23
20
24
build_on_mac :
21
25
runs-on : macos-14
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module.exports = {
32
32
{
33
33
name : '@electron-forge/maker-deb' ,
34
34
config : { "bin" :"wlgate" } ,
35
- arch : [ 'x86' ]
35
+ arch : [ 'x86' , 'armv7l' ]
36
36
} ,
37
37
] ,
38
38
plugins : [
You can’t perform that action at this time.
0 commit comments