-
-
Notifications
You must be signed in to change notification settings - Fork 108
281 lines (275 loc) · 9.91 KB
/
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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
name: Build
on:
push:
branches:
- master
paths:
- 'xmcl-runtime/**'
- 'xmcl-runtime-api/**'
- 'xmcl-keystone-ui/**'
- 'xmcl-electron-app/**'
- 'package.json'
- 'pnpm-lock.yaml'
- '.github/**'
# env:
# ELECTRON_CACHE: ~/.cache/electron
# ELECTRON_BUILDER_CACHE: ~/.cache/electron-builder
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: pnpm/[email protected]
with:
version: 8.3.0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'pnpm'
# - name: Restore cached Electron
# id: cache-electron
# uses: actions/cache/restore@v3
# with:
# path: |
# ~/.cache/electron
# ~/.cache/electron-builder
# key: ${{ runner.os }}-electron
- name: Install
run: pnpm install
- name: Build
run: |
pnpm run --prefix xmcl-keystone-ui build
pnpm run --prefix xmcl-electron-app build:all
env:
BUILD_NUMBER: ${{ github.run_number }}
NODE_ENV: production
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_TOKEN }}
WIN_CSC_LINK: ${{ secrets.CODE_SIGN_BASE64 }}
APPX_PUBLISHER: ${{ secrets.APPX_PUBLISHER }}
WIN_CSC_KEY_PASSWORD: ${{ secrets.CODE_SIGN_PWD }}
# - name: Save cached Electron
# uses: actions/cache/save@v3
# with:
# path: |
# ~/.cache/electron
# ~/.cache/electron-builder
# key: ${{ runner.os }}-electron
- name: Upload Build
uses: actions/upload-artifact@v3
with:
name: build
path: |
xmcl-electron-app/build/output/
- name: Upload Windows Zip Build
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v3
with:
name: win-b${{ github.run_number }}
path: |
xmcl-electron-app/build/output/win-unpacked/
- name: Upload Linux x64 Zip Build
if: ${{ runner.os == 'Linux' }}
uses: actions/upload-artifact@v3
with:
name: linux-b${{ github.run_number }}-x64
path: |
xmcl-electron-app/build/output/linux-unpacked/
- name: Upload Linux arm64 Zip Build
if: ${{ runner.os == 'Linux' }}
uses: actions/upload-artifact@v3
with:
name: linux-b${{ github.run_number }}-arm64
path: |
xmcl-electron-app/build/output/linux-arm64-unpacked/
- name: Upload Mac x64 Zip Build
if: ${{ runner.os == 'macOS' }}
uses: actions/upload-artifact@v3
with:
name: mac-b${{ github.run_number }}-x64
path: |
xmcl-electron-app/build/output/mac/
- name: Upload Mac arm64 Zip Build
if: ${{ runner.os == 'macOS' }}
uses: actions/upload-artifact@v3
with:
name: mac-b${{ github.run_number }}-arm64
path: |
xmcl-electron-app/build/output/mac-arm64/
- name: Prepare Windows Asar
if: ${{ runner.os == 'Windows' && startsWith(github.event.head_commit.message, 'chore(release)') }}
run: |
mkdir asar
mv xmcl-electron-app/build/output/app.asar asar/app-win.asar
mv xmcl-electron-app/build/output/app.asar.sha256 asar/app-win.asar.sha256
- name: Prepare macOS Asar
if: ${{ runner.os == 'macOS' && startsWith(github.event.head_commit.message, 'chore(release)') }}
run: |
mkdir asar
mv "xmcl-electron-app/build/output/app.asar" asar/app-mac.asar
mv "xmcl-electron-app/build/output/app-arm64.asar" asar/app-mac-arm64.asar
mv "xmcl-electron-app/build/output/app.asar.sha256" asar/app-mac.asar.sha256
mv "xmcl-electron-app/build/output/app-arm64.asar.sha256" asar/app-mac-arm64.asar.sha256
- name: Prepare Linux Asar
if: ${{ runner.os == 'Linux' && startsWith(github.event.head_commit.message, 'chore(release)') }}
run: |
mkdir asar
mv xmcl-electron-app/build/output/app.asar asar/app-linux.asar
mv xmcl-electron-app/build/output/app-arm64.asar asar/app-linux-arm64.asar
mv xmcl-electron-app/build/output/app.asar.sha256 asar/app-linux.asar.sha256
mv xmcl-electron-app/build/output/app-arm64.asar.sha256 asar/app-linux-arm64.asar.sha256
- name: Upload Asar
if: ${{ startsWith(github.event.head_commit.message, 'chore(release)') }}
uses: actions/upload-artifact@v3
with:
name: build
path: |
asar/*.*
prepare-release:
runs-on: ubuntu-latest
needs:
- build
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release)') }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- uses: pnpm/[email protected]
with:
version: 8.3.0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install
run: |
pnpm install --filter ./.github/actions
- name: Bump Version
id: version
uses: Voxelum/semantic-version-bump-action@xmcl
with:
packages: |
./xmcl-keystone-ui
./xmcl-runtime
./xmcl-runtime-api
root: '.'
stage: 'prepare'
- name: Update Sponsor
uses: Voxelum/afdian-sponsor-action@master
with:
user-id: ${{ secrets.AFDIAN_USER_ID }}
token: ${{ secrets.AFDIAN_TOKEN }}
markdown: |
README.md
README.zh.md
- name: Update Lock File
if: ${{ steps.version.outputs.release == 'true' }}
run: pnpm i --lockfile-only
- name: Create Pull Request
if: ${{ steps.version.outputs.release == 'true' }}
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore(release): version ${{ steps.version.outputs.version }}"
title: Prepare Release ${{ steps.version.outputs.version }}
body: ${{ steps.version.outputs.changelog }}
reviewers: ci010
assignees: ci010
branch: prepare-release
release:
if: startsWith(github.event.head_commit.message, 'chore(release)')
runs-on: ubuntu-latest
needs:
- build
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- uses: pnpm/[email protected]
with:
version: 8.3.0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'pnpm'
- name: Install
run: |
pnpm install --filter ./.github/actions
- name: Download Build
uses: actions/download-artifact@v2
with:
name: build
path: build
- name: Prepare Release
id: prepare_release
uses: Voxelum/semantic-version-bump-action@xmcl
with:
packages: |
./xmcl-keystone-ui
./xmcl-runtime
./xmcl-runtime-api
root: '.'
stage: 'release'
- name: Create Tag
run: |
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/voxelum/x-minecraft-launcher.git"
git config user.name ci010
git config user.email [email protected]
git tag -f ${{ steps.prepare_release.outputs.tag }}
git push origin tag ${{ steps.prepare_release.outputs.tag }} -f
- name: Rename asar
run: |
mv ./build/app-win.asar ./build/app-${{ steps.prepare_release.outputs.version }}-win.asar
mv ./build/app-mac.asar ./build/app-${{ steps.prepare_release.outputs.version }}-mac.asar
mv ./build/app-mac-arm64.asar ./build/app-${{ steps.prepare_release.outputs.version }}-mac-arm64.asar
mv ./build/app-linux.asar ./build/app-${{ steps.prepare_release.outputs.version }}-linux.asar
mv ./build/app-linux-arm64.asar ./build/app-${{ steps.prepare_release.outputs.version }}-linux-arm64.asar
mv ./build/app-win.asar.sha256 ./build/app-${{ steps.prepare_release.outputs.version }}-win.asar.sha256
mv ./build/app-mac.asar.sha256 ./build/app-${{ steps.prepare_release.outputs.version }}-mac.asar.sha256
mv ./build/app-mac-arm64.asar.sha256 ./build/app-${{ steps.prepare_release.outputs.version }}-mac-arm64.asar.sha256
mv ./build/app-linux.asar.sha256 ./build/app-${{ steps.prepare_release.outputs.version }}-linux.asar.sha256
mv ./build/app-linux-arm64.asar.sha256 ./build/app-${{ steps.prepare_release.outputs.version }}-linux-arm64.asar.sha256
- name: Emit Version File
run: |
echo ${{ steps.prepare_release.outputs.version }}.${{ github.run_number }} > ./build/version
- name: Draft Release
id: create_release
uses: voxelum/create-release@xmcl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.prepare_release.outputs.tag }}
release_name: ${{ steps.prepare_release.outputs.tag }}
draft: true
prerelease: false
body: ${{ steps.prepare_release.outputs.changelog }}
asset_dir_path: ./build
- name: Checkout Website
uses: actions/checkout@v3
with:
repository: Voxelum/xmcl-page
path: xmcl-page
- name: Create Release Note
uses: ./.github/actions/generate-release-note
with:
body: ${{ steps.prepare_release.outputs.changelog }}
version: ${{ steps.prepare_release.outputs.version }}
- name: Create Release Note PR
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.PAT_GITHUB_TOKEN }}
path: xmcl-page
commit-message: "docs: Update ${{ steps.prepare_release.outputs.version }} release note"
title: Update ${{ steps.prepare_release.outputs.version }} release note
body: Update ${{ steps.prepare_release.outputs.version }} release note
reviewers: ci010
assignees: ci010
branch: release-note-${{ steps.prepare_release.outputs.version }}