From aa5a33d29a4a412a736dd730bea3c8baa050d8b5 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Mon, 15 Jan 2024 13:04:38 -0500 Subject: [PATCH] add arm64 and armv7l arches to linux CI --- package.json | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 022f8b03e..1e71ee42f 100644 --- a/package.json +++ b/package.json @@ -79,11 +79,32 @@ "target": "nsis" }, "linux": { - "artifactName": "${productName}_${version}.${ext}", + "artifactName": "${productName}_${arch}_${version}.${ext}", "target": [ - "deb", - "rpm", - "appImage" + { + "target": "deb", + "arch": [ + "x64", + "arm64", + "armv7l" + ] + }, + { + "target": "rpm", + "arch": [ + "x64", + "arm64", + "armv7l" + ] + }, + { + "target": "appImage", + "arch": [ + "x64", + "arm64", + "armv7l" + ] + } ], "category": "3DGraphics", "icon": "build/icon.icns"