-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
60 lines (52 loc) · 1.57 KB
/
Copy pathelectron-builder.yml
File metadata and controls
60 lines (52 loc) · 1.57 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
appId: studio.claudecode.app
productName: Claude Code Studio
copyright: © Claude Code Studio
# GitHub releases are the update feed for electron-updater (Win/Linux) and the
# source of the dmg for the Homebrew Cask (macOS).
publish:
provider: github
owner: Lexus2016
repo: claude-code-studio
releaseType: release # publish directly (not a draft) so it merges cleanly with release.yml
asar: true
# Runtime uses Node's built-in node:sqlite (Electron's Node >= 22.13), not the
# native better-sqlite3, and ssh2 falls back to pure-JS without cpu-features —
# so skip rebuilding native modules against Electron's ABI (avoids a brittle,
# slow compile step that isn't needed).
npmRebuild: false
# Spawned helper scripts and hooks must be real files on disk so the child
# Node interpreter can read them — they cannot live inside the asar archive.
asarUnpack:
- "mcp-*.js"
- "hooks/**"
files:
- "**/*"
- "!.planning/**"
- "!docs/**"
- "!data/**"
- "!workspace/**"
- "!.git/**"
- "!.github/**"
- "!.claude/**"
- "!.serena/**"
- "!.playwright-mcp/**"
- "!**/*.bak"
- "!dist-desktop/**"
- "!public/screenshots/**"
- "!homebrew-tap/**"
- "!README*"
- "!CLAUDE.md"
directories:
output: dist-desktop
buildResources: build
mac:
target: [dmg, zip]
category: public.app-category.developer-tools
artifactName: "claude-code-studio-${version}-${arch}.${ext}"
win:
target: [nsis]
artifactName: "claude-code-studio-Setup-${version}.${ext}"
linux:
target: [AppImage, deb]
category: Development
artifactName: "claude-code-studio-${version}-${arch}.${ext}"