forked from agracio/electron-edge-js
-
Notifications
You must be signed in to change notification settings - Fork 1
78 lines (63 loc) · 1.49 KB
/
build-all.yml
File metadata and controls
78 lines (63 loc) · 1.49 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
name: Build All
on:
workflow_dispatch:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_NOLOGO: 1
jobs:
build-35:
uses: ./.github/workflows/build.yml
with:
electron: 35
build-all: true
build-36:
uses: ./.github/workflows/build.yml
with:
electron: 36
build-all: true
build-37:
uses: ./.github/workflows/build.yml
with:
electron: 37
build-all: true
build-38:
uses: ./.github/workflows/build.yml
with:
electron: 38
build-all: true
build-39:
uses: ./.github/workflows/build.yml
with:
electron: 39
build-all: true
build-40:
uses: ./.github/workflows/build.yml
with:
electron: 40
build-all: true
upload-artifacts:
runs-on: ubuntu-latest
needs: [build-35, build-36, build-37, build-38, build-39, build-40]
timeout-minutes: 20
strategy:
fail-fast: false
name: upload artifcts
if: success()
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: release
pattern: win32-electron-edge-js*
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: release
pattern: darwin-electron-edge-js*
- name: Upload artifacts
uses: actions/upload-artifact/merge@v4
with:
name: electron-edge-js
pattern: '*electron-edge-js*'
delete-merged: true