-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json5
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathelectron-builder.json5
File metadata and controls
53 lines (53 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* @see https://www.electron.build/configuration/configuration
*/
{
appId: "com.rubenglez.samplebyte",
productName: "SampleByte",
asar: true,
asarUnpack: [
"**/node_modules/@ffmpeg-installer/**/*"
],
directories: {
output: "release/${version}",
},
files: ["dist-electron", "dist"],
mac: {
artifactName: "${productName}_${version}.${ext}",
target: ["dmg", "zip"],
hardenedRuntime: true,
gatekeeperAssess: false,
entitlements: "build/entitlements.mac.plist",
entitlementsInherit: "build/entitlements.mac.plist",
// Notarization runs on CI at release time; credentials come from the APPLE_API_* /
// APPLE_TEAM_ID env vars set in .github/workflows/release.yml. For a quick unsigned
// local package build, run: CSC_IDENTITY_AUTO_DISCOVERY=false pnpm build
notarize: true,
},
win: {
target: [
{
target: "nsis",
arch: ["x64"],
},
],
artifactName: "${productName}_${version}.${ext}",
},
linux: {
target: ["AppImage", "deb"],
artifactName: "${productName}_${version}.${ext}",
category: "Audio",
},
nsis: {
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
deleteAppDataOnUninstall: false,
},
publish: {
provider: "github",
owner: "RubenGlez",
repo: "samplebyte",
releaseType: "draft",
},
}