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:
1212 - uses : actions/checkout@v4
1313 - name : install dependencies
1414 run : npm install
15- - name : build and publish
15+ - name : build and publish x64
1616 env :
1717 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
1818 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
1923
2024 build_on_mac :
2125 runs-on : macos-14
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module.exports = {
3232 {
3333 name : '@electron-forge/maker-deb' ,
3434 config : { "bin" :"wlgate" } ,
35- arch : [ 'x86' ]
35+ arch : [ 'x86' , 'armv7l' ]
3636 } ,
3737 ] ,
3838 plugins : [
You can’t perform that action at this time.
0 commit comments