Skip to content

Commit bb03856

Browse files
committed
Added ARM (Rpi) to builders
1 parent 785677a commit bb03856

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/electron.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

forge.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: [

0 commit comments

Comments
 (0)