mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-09 05:09:39 +00:00
Fixes an issue that arm64 builds are flagged as "damaged" by macOS due to lack of signature, using universal builds fixes the package and runs on native instructions.
45 lines
820 B
JSON
45 lines
820 B
JSON
{
|
|
"productName": "Bridge",
|
|
"directories": {
|
|
"output": "release/"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"publish": {
|
|
"provider": "github",
|
|
"releaseType": "release"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"deleteAppDataOnUninstall": true,
|
|
"shortcutName": "Bridge"
|
|
},
|
|
"win": {
|
|
"icon": "dist/angular/browser/assets/images/system/icons/win/icon.ico",
|
|
"compression": "store",
|
|
"artifactName": "Bridge-Setup-${version}.${ext}"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.utilities",
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"universal"
|
|
]
|
|
}
|
|
],
|
|
"icon": "dist/angular/browser/assets/images/system/icons/mac/icon.icns"
|
|
},
|
|
"linux": {
|
|
"compression": "maximum",
|
|
"target": [
|
|
"AppImage",
|
|
"flatpak"
|
|
],
|
|
"category": "utility"
|
|
}
|
|
}
|