-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathelectron-builder.yml
48 lines (48 loc) · 1 KB
/
electron-builder.yml
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
appId: org.nasa.earthdata-download
productName: Earthdata Download
directories:
output: 'release/${version}'
files:
- dist-electron
- dist
extraResources:
- migrations/*
- seeds/*
artifactName: ${productName}-${arch}.${ext}
extraMetadata:
description: Earthdata Download
afterSign: './build/notarize.js'
mac:
icon: './build/default/icons/icon.icns'
target:
- target: default
arch:
- x64
- arm64
notarize: false # afterSign will handle notarizing
hardenedRuntime: true
gatekeeperAssess: false
entitlements: './build/entitlements.mac.plist'
entitlementsInherit: './build/entitlements.mac.plist'
win:
publisherName: Earthdata Download
icon: './build/alt/icons/icon.ico'
target:
- target: nsis
arch:
- x64
nsis:
oneClick: false
allowToChangeInstallationDirectory: true
linux:
icon: './build/alt/icons'
target:
- target: AppImage
arch:
- x64
- target: deb
arch:
- x64
- target: rpm
arch:
- x64