Browse Source

Add arch to build artifactName

- Adjust build targets
master
jeffvli 3 years ago
parent
commit
a6d9fa525a
  1. 7
      package.json

7
package.json

@ -33,7 +33,7 @@
"build": { "build": {
"productName": "Sonixd", "productName": "Sonixd",
"appId": "org.erb.sonixd", "appId": "org.erb.sonixd",
"artifactName": "${productName}-${version}-${os}.${ext}", "artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [ "files": [
"dist/", "dist/",
"node_modules/", "node_modules/",
@ -51,8 +51,7 @@
}, },
"mac": { "mac": {
"target": [ "target": [
"dmg", "dmg"
"zip"
], ],
"type": "distribution", "type": "distribution",
"hardenedRuntime": true, "hardenedRuntime": true,
@ -83,7 +82,7 @@
"linux": { "linux": {
"target": [ "target": [
"AppImage", "AppImage",
"zip" "tar.xz"
], ],
"category": "Development" "category": "Development"
}, },

Loading…
Cancel
Save