-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (57 loc) · 1.21 KB
/
release-build.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Build all files
on:
workflow_dispatch:
jobs:
prepare:
uses: ./.github/workflows/workflow-release-prepare.yml
secrets: inherit
with:
node: 20
#X64 Arch
package-x64:
uses: ./.github/workflows/workflow-release-linux.yml
secrets: inherit
needs: prepare
with:
electron: 3.1.0
node: 20
#X86 Arch
package-x86:
uses: ./.github/workflows/workflow-release-linux-x86.yml
secrets: inherit
needs: prepare
with:
electron: 3.1.0
node: 20
#arm64 Arch
package-arm64:
uses: ./.github/workflows/workflow-release-linux-arm64.yml
secrets: inherit
needs: prepare
with:
electron: 3.1.0
node: 20
#armhf Arch
package-armv7l:
uses: ./.github/workflows/workflow-release-linux-armhf.yml
secrets: inherit
needs: prepare
with:
electron: 3.1.0
node: 20
#Windows
package-windows:
uses: ./.github/workflows/workflow-release-windows.yml
secrets: inherit
needs: prepare
with:
electron: 3.1.0
node: 20
#Mac OS
package-mac:
uses: ./.github/workflows/workflow-release-mac.yml
secrets: inherit
needs: prepare
with:
electron: 3.1.0
node: 20