feat: add arm architectures to linux target

This commit is contained in:
Joel Wetzell
2025-12-15 13:03:57 -06:00
committed by GitHub
parent cd39227af7
commit 9355d7bf27
2 changed files with 14 additions and 4 deletions
+10 -3
View File
@@ -25,7 +25,7 @@
"lint": "eslint . --quiet",
"dist-win": "electron-builder --publish=never --x64 --win",
"dist-mac": "electron-builder --publish=never --mac",
"dist-linux": "electron-builder --publish=never --x64 --linux"
"dist-linux": "electron-builder --publish=never --linux"
},
"build": {
"productName": "ontime",
@@ -68,8 +68,15 @@
"uninstallerSidebar": "ontime-install.bmp"
},
"linux": {
"target": "AppImage",
"artifactName": "ontime-linux.AppImage"
"target": {
"target": "AppImage",
"arch": [
"x64",
"arm64",
"armv7l"
]
},
"artifactName": "ontime-linux-${arch}.AppImage"
},
"files": [
"**/*",