-
-
Notifications
You must be signed in to change notification settings - Fork 7
147 lines (140 loc) · 3.88 KB
/
build-all.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: CI
on:
push:
pull_request:
branches: [ master ]
env:
CI: true
FORCE_COLOR: 1
NODE: 18.x
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE }}
- run: sudo apt-get install xvfb
- run: npm install
- name: Run npm test
run: xvfb-run --auto-servernum npm test
timeout-minutes: 5
- name: build
run: |
npm run package -- --sha ${{ github.sha }} --ref ${{ github.ref }}
ls -la dist
- uses: actions/upload-artifact@v2
with:
name: linux-artifacts
path: dist/*.tar.gz
- uses: actions/upload-artifact@v2
with:
name: linux-artifacts
path: dist/*.AppImage
macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: use node
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE }}
- name: info
run: |
node -v
npm -v
- name: install
run: npm install
- name: test
run: npm test
timeout-minutes: 5
env:
VERBOSE: 1
- name: build
run: |
npm run package -- --sha ${{ github.sha }} --ref ${{ github.ref }}
ls -la dist
- uses: actions/upload-artifact@v2
with:
name: macos-artifacts
path: dist/*.zip
- uses: actions/upload-artifact@v2
with:
name: macos-artifacts
path: dist/*.dmg
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: use node
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE }}
- name: info
run: |
node -v
npm -v
- name: install
run: npm install
- name: test
run: npm test
timeout-minutes: 5
- name: build
run: |
npm run package -- --sha ${{ github.sha }} --ref ${{ github.ref }}
dir dist
- uses: actions/upload-artifact@v2
with:
name: windows-artifacts
path: dist/*.zip
- uses: actions/upload-artifact@v2
with:
name: windows-artifacts
path: dist/*.exe
release:
runs-on: ubuntu-latest
needs: [ windows, macos, linux ]
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
with:
path: ./
- name: Flatten artifacts
run: |
mv windows-artifacts/* .
mv macos-artifacts/* .
mv linux-artifacts/* .
rm -rf *artifacts
ls -lR
- name: Remove files not ready for release
run: |
rm *.exe *.dmg *.AppImage
ls -lR
- name: Create Release
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request'
uses: actions/github-script@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const fs = require('fs').promises;
console.log('environment', process.versions);
const { repo: { owner, repo }, sha, ref } = context;
console.log({ owner, repo, sha, ref });
const name = ref.replace('refs/tags/', '');
const release = await github.repos.createRelease({
owner, repo, name,
tag_name: name,
draft: true,
target_commitish: sha
});
console.log('created release', { release });
for (let file of await fs.readdir('.')) {
console.log('uploading', file);
await github.repos.uploadReleaseAsset({
owner, repo,
release_id: release.data.id,
name: file,
data: await fs.readFile(`./${file}`)
});
}