-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
90 lines (82 loc) · 2.12 KB
/
electron-builder.yml
File metadata and controls
90 lines (82 loc) · 2.12 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
80
81
82
83
84
85
86
87
88
89
90
appId: com.hive.app
productName: Hive
directories:
buildResources: resources
output: dist
files:
- out/**/*
- resources/**/*
# Native .node binaries cannot be loaded from inside an ASAR archive.
# This extracts them to app.asar.unpacked/ at build time.
asarUnpack:
- '**/*.node'
- '**/better-sqlite3/**'
- '**/node-pty/**'
# ── macOS ──────────────────────────────────────────────
mac:
icon: resources/icon.icns
extraResources:
- from: src/native/build/Release/ghostty.node
to: native/ghostty.node
category: public.app-category.developer-tools
hardenedRuntime: true
gatekeeperAssess: false
entitlements: resources/entitlements.mac.plist
entitlementsInherit: resources/entitlements.mac.inherit.plist
target:
- target: dmg
arch:
- arm64
- x64
- target: zip
arch:
- arm64
- x64
notarize: true
dmg:
sign: false
# ── Windows ────────────────────────────────────────────
win:
icon: resources/icon.ico
target:
- target: nsis
arch:
- x64
- target: zip
arch:
- x64
nsis:
oneClick: false
perMachine: false
allowToChangeInstallationDirectory: true
deleteAppDataOnUninstall: false
artifactName: "Hive-Setup-${version}.${ext}"
# ── Linux ──────────────────────────────────────────────
linux:
icon: resources/icon.png
category: Development
target:
- target: AppImage
arch:
- x64
- target: deb
arch:
- x64
- target: tar.gz
arch:
- x64
deb:
depends:
- libgtk-3-0
- libnotify4
- libnss3
- libxss1
- libxtst6
- xdg-utils
- libatspi2.0-0
- libuuid1
# ── Auto-update ───────────────────────────────────────
publish:
- provider: github
owner: morapelker
repo: hive