-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathelectron-builder-config.js
More file actions
79 lines (76 loc) · 1.84 KB
/
electron-builder-config.js
File metadata and controls
79 lines (76 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const dotenv = require("dotenv");
dotenv.config();
function productNameByWorkflow() {
if (process.env.VITE_BUILD_ENV == "nightly") {
return "grid-editor-nightly";
} else if (process.env.VITE_BUILD_ENV == "alpha") {
return `grid-editor-alpha-${process.env.RELEASE_VERSION}`;
} else {
return "grid-editor";
}
}
const config = {
asar: true,
appId: "intechstudio.grid-editor.app",
productName: productNameByWorkflow(),
copyright: "Copyright © Intech Studio Ltd.",
generateUpdatesFilesForAllChannels: true,
directories: {
output: "build/",
buildResources: "build-assets",
},
protocols: [
{
name: "grid-editor-protocol",
schemes: ["grid-editor", "grid-editor-dev"],
},
],
extraResources: [
{
from: "src/renderer/assets/**/*",
to: "assets",
},
],
files: ["**/*"],
win: {
azureSignOptions: {
publisherName: "Intech Studio LLC",
endpoint: "https://weu.codesigning.azure.net/",
certificateProfileName: "intechstudio",
codeSigningAccountName: "grid-editor",
},
publish: [
{
provider: "github",
owner: "intechstudio",
repo: "grid-editor",
},
],
artifactName: "${name}-windows-${version}-x64.${ext}",
target: ["nsis"],
icon: "build-assets/icon.png",
},
linux: {
target: "AppImage",
artifactName: "${name}-linux-${version}.${ext}",
},
mac: {
target: [
{
target: "default",
arch: ["arm64", "x64"],
},
],
artifactName: "${name}-macos-${version}-${arch}.${ext}",
icon: "build-assets/icon_mac.png",
hardenedRuntime: true,
gatekeeperAssess: false,
entitlements: "build-assets/entitlements.mac.plist",
entitlementsInherit: "build-assets/entitlements.mac.plist",
notarize: true,
},
dmg: {
sign: false,
},
};
module.exports = config;