From a6d9fa525a9ca7cd5c5afd0585a3500f99f35216 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Thu, 10 Mar 2022 15:39:45 -0800 Subject: [PATCH] Add arch to build artifactName - Adjust build targets --- package.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index af2aa7b..92f4407 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "build": { "productName": "Sonixd", "appId": "org.erb.sonixd", - "artifactName": "${productName}-${version}-${os}.${ext}", + "artifactName": "${productName}-${version}-${os}-${arch}.${ext}", "files": [ "dist/", "node_modules/", @@ -51,8 +51,7 @@ }, "mac": { "target": [ - "dmg", - "zip" + "dmg" ], "type": "distribution", "hardenedRuntime": true, @@ -83,7 +82,7 @@ "linux": { "target": [ "AppImage", - "zip" + "tar.xz" ], "category": "Development" },