-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
43 lines (36 loc) · 1.01 KB
/
Copy pathelectron-builder.yml
File metadata and controls
43 lines (36 loc) · 1.01 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
# OpenFall — electron-builder config.
# Consumed by `electron-builder --win/--linux` (see package.json scripts).
# No code signing: no win/mac identity is configured, and mac.identity is null,
# so set CSC_IDENTITY_AUTO_DISCOVERY=false in CI to skip signing discovery.
appId: com.openfall.app
productName: OpenFall
directories:
output: release
# Ship the built renderer, the compiled main/preload, and the manifest.
files:
- dist/**/*
- dist-electron/**/*
- build/icon.png
- package.json
asar: true
win:
target:
- nsis
- portable
nsis:
oneClick: false
allowToChangeInstallationDirectory: true
linux:
target:
# tar.gz builds cross-platform (incl. from Windows). AppImage/deb need a
# Linux host (mksquashfs/dpkg) — config is ready; build there with package:linux.
- tar.gz
- AppImage
- deb
category: Utility
# mac is optional; harmless to declare. Signing is disabled (identity: null).
mac:
target:
- dmg
category: public.app-category.productivity
identity: null