From a519c28d6f20e5bd3479a9b843b4a96dce7bb2b8 Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Wed, 14 Jun 2023 22:43:01 +0530 Subject: [PATCH] add windows arm64 build --- electron-builder.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/electron-builder.json b/electron-builder.json index 42c1422f..4dd8405a 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -17,6 +17,7 @@ ] } ], + "artifactName": "${productName}-${version}-${arch}.${ext}", "linux": { "category": "TerminalEmulator", "target": [ @@ -27,9 +28,13 @@ ] }, "win": { - "target": [ - "nsis" - ], + "target": { + "target": "nsis", + "arch": [ + "x64", + "arm64" + ] + }, "rfc3161TimeStampServer": "http://timestamp.comodoca.com" }, "nsis": { @@ -46,7 +51,6 @@ "arm64" ] }, - "artifactName": "${productName}-${version}-${os}-${arch}.${ext}", "category": "public.app-category.developer-tools", "entitlements": "./build/mac/entitlements.plist", "entitlementsInherit": "./build/mac/entitlements.plist",