-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
65 lines (58 loc) · 1.38 KB
/
electron-builder.yml
File metadata and controls
65 lines (58 loc) · 1.38 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
appId: com.openclaw.desktop
productName: OpenClaw Desktop
copyright: Copyright © 2026 wurongzhao@AgentKernel
directories:
output: dist
buildResources: resources
electronDist: node_modules/electron/dist
asar: true
compression: normal
extraResources:
- from: resources/node
to: node
filter:
- "**/*"
- from: resources/openclaw
to: openclaw
filter:
- "**/*"
win:
target:
- target: nsis
arch:
- x64
icon: resources/icon.ico
artifactName: "OpenClaw-Setup-${version}.${ext}"
# 在 CI 中设置 CSC_LINK + CSC_KEY_PASSWORD 时进行代码签名
signAndEditExecutable: true
nsis:
oneClick: false
perMachine: false
allowToChangeInstallationDirectory: true
displayLanguageSelector: true
multiLanguageInstaller: true
installerLanguages:
- en_US
- zh_CN
- zh_TW
installerIcon: resources/icon.ico
uninstallerIcon: resources/icon.ico
installerSidebar: resources/installer/installer-sidebar.bmp
license: resources/installer/license.txt
createDesktopShortcut: true
createStartMenuShortcut: true
shortcutName: OpenClaw Desktop
runAfterFinish: true
deleteAppDataOnUninstall: false
files:
- "out/**/*"
- "package.json"
- "!node_modules/**/*"
- "!src/**/*"
- "!scripts/**/*"
- "!build/**/*"
- "!docs/**/*"
- "!.cobrain/**/*"
- "!.github/**/*"
- "!resources/node/**/*"
- "!resources/openclaw/**/*"