mattermost-desktop/electron-builder.json
Guillermo Vayá 714980c8c6 [MM-19569] add notarization to osx app (#1086)
* [MM-19569] add notarization to release

also added signing verification on release
added electron-notarize to dev deps

* [MM-19569] fix semicolon

* [MM-19569] check that we are running on osx to notarize
2019-10-22 09:48:00 +03:00

103 lines
1.9 KiB
JSON

{
"publish": [{
"provider": "generic",
"url": "https://releases.mattermost.com/desktop/"
}],
"appId": "Mattermost.Desktop",
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"directories": {
"buildResources": "resources",
"app": "src",
"output": "release"
},
"files": [
"main_bundle.js",
"browser/**/*{.html,.css,_bundle.js}",
"assets/**/*",
"node_modules/bootstrap/dist/**",
"node_modules/simple-spellchecker/dict/*.dic"
],
"protocols": [
{
"name": "Mattermost",
"schemes": [
"mattermost"
]
}
],
"afterSign": "scripts/notarize.js",
"deb": {
"synopsis": "Mattermost"
},
"linux": {
"category": "Network;InstantMessaging",
"target": [
"deb",
"tar.gz",
"appimage"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
},
{
"from": "resources/linux",
"filter": [
"create_desktop_file.sh",
"icon.svg",
"README.md"
]
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"zip",
"dmg"
],
"darkModeSupport": true,
"extraResources": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
],
"hardenedRuntime": true,
"gatekeeperAssess": true
},
"dmg": {
"background": "resources/osx/DMG_BG.png",
"iconSize": 140,
"iconTextSize": 18,
"sign": false
},
"squirrelWindows": {
"iconUrl": "file://resources/icon.ico",
"artifactName": "${name}-setup-${version}-${arch}.${ext}"
},
"win": {
"target": [
"nsis",
"zip"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
]
},
"nsis": {
"artifactName": "${name}-setup-${version}-win.${ext}"
}
}