-
-
Notifications
You must be signed in to change notification settings - Fork 105
403 lines (391 loc) · 13.5 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
name: Build
on:
push:
branches:
- master
paths:
- "xmcl-runtime/**"
- "xmcl-runtime-api/**"
- "xmcl-keystone-ui/**"
- "xmcl-electron-app/**"
- "package.json"
- "pnpm-lock.yaml"
- ".github/**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: pnpm/action-setup@v4
with:
version: 9.3.0
- name: Fix node-gyp and Python
if: ${{ runner.os == 'macOS' }}
run: python3 -m pip install --break-system-packages --user packaging setuptools
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install
run: pnpm install
- name: Restore cached Electron
id: cache-electron
uses: actions/cache/restore@v4
with:
path: |
~/.cache/electron
~/.cache/electron-builder
key: ${{ runner.os }}-electron-build-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-electron-build-
- 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_OPTIONS: --max-old-space-size=32768
NODE_ENV: production
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_TOKEN }}
PUBLISHER: CN=SignPath Foundation, O=SignPath Foundation, L=Lewes, S=Delaware, C=US
- name: Upload Source Maps
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v4
with:
name: sourcemap
path: |
xmcl-electron-app/dist/*.js.map
- name: Upload Unsigned Appx
if: ${{ runner.os == 'Windows' && startsWith(github.event.head_commit.message, 'chore(release)') }}
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: appx
path: |
xmcl-electron-app/build/output/*.appx
- name: Sign Build
if: ${{ runner.os == 'Windows' && startsWith(github.event.head_commit.message, 'chore(release)') }}
id: sign
uses: signpath/github-action-submit-signing-request@v0.4
continue-on-error: true
with:
api-token: ${{ secrets.CODE_SIGN_TOKEN }}
organization-id: ab51b40d-a5bd-4d25-ae54-66ccabf86161
project-slug: x-minecraft-launcher
signing-policy-slug: release-signing
github-artifact-id: ${{ steps.upload-artifact.outputs.artifact-id }}
artifact-configuration-slug: appx
wait-for-completion: true
output-artifact-directory: xmcl-electron-app/build/output/
- name: Check Sign Status
id: sign-status
if: ${{ runner.os == 'Windows' && startsWith(github.event.head_commit.message, 'chore(release)') }}
run: |
if ("${{ steps.sign.outcome }}" -eq "success") {
echo "SIGN_SUCCESS=true" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
} else {
echo "SIGN_SUCCESS=false" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
}
- name: Update Signed Sha256
if: ${{ runner.os == 'Windows' && startsWith(github.event.head_commit.message, 'chore(release)') }}
run: |
pnpm postsign
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: build-${{ runner.os }}
path: |
xmcl-electron-app/build/output/
- name: Upload Windows Zip Build
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v4
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@v4
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@v4
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@v4
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@v4
with:
name: mac-b${{ github.run_number }}-arm64
path: |
xmcl-electron-app/build/output/mac-arm64/
- name: Save cached Electron
if: steps.cache-electron.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: |
~/.cache/electron
~/.cache/electron-builder
key: ${{ runner.os }}-electron-build-${{ hashFiles('**/pnpm-lock.yaml') }}
build-arch:
needs: build
runs-on: ubuntu-latest
if: ${{ startsWith(github.event.head_commit.message, 'chore(release)') }}
strategy:
matrix:
include:
- arch: x86_64
pkg_arch: amd64
- arch: aarch64
pkg_arch: arm64
container: archlinux:latest
steps:
- name: Install Dependencies
run: |
pacman -Syu --noconfirm base-devel nodejs npm
- name: Install Git
run: |
pacman -S --noconfirm git
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Download Ubuntu Build Artifacts
uses: actions/download-artifact@v4
with:
name: build-Linux
path: ./
- name: Extract version
id: version
run: |
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
- name: Build Package
run: |
mkdir -p build
cd build
useradd builder -m
chown -R builder:builder ./
if [ "${{ matrix.arch }}" = "x86_64" ]; then
cp "../xmcl-${{ steps.version.outputs.version }}-amd64.deb" ./
DEB_FILE="xmcl-${{ steps.version.outputs.version }}-amd64.deb"
elif [ "${{ matrix.arch }}" = "aarch64" ]; then
cp "../xmcl-${{ steps.version.outputs.version }}-arm64.deb" ./
DEB_FILE="xmcl-${{ steps.version.outputs.version }}-arm64.deb"
fi
cat > PKGBUILD << EOF
pkgname=xmcl-launcher
pkgver=${{ steps.version.outputs.version }}
pkgrel=1
pkgdesc="X Minecraft Launcher - A modern Minecraft launcher"
arch=('${{ matrix.arch }}')
url="https://xmcl.app/"
license=('MIT')
provides=("xmcl")
conflicts=('xmcl-launcher-bin')
options=(!strip !debug)
source=("$DEB_FILE")
noextract=("$DEB_FILE")
sha256sums=('SKIP')
package() {
cd "\${srcdir}"
bsdtar -xf "$DEB_FILE" data.tar.xz
bsdtar -xf data.tar.xz -C "\${pkgdir}"
install -dv "\${pkgdir}/usr/bin"
}
EOF
# Create makepkg configuration
cat > /etc/makepkg.conf << EOF
MAKEFLAGS="-j\$(nproc)"
PKGEXT='.pkg.tar.zst'
SRCEXT='.src.tar'
COMPRESSZST=(zstd -c -T0 -18 -)
EOF
# Set permissions and build
chown -R builder:builder .
su builder -c "CARCH=${{ matrix.arch }} makepkg -sf --noconfirm"
if [ -f *.pkg.tar.zst ]; then
for f in *.pkg.tar.zst; do
mv "$f" "../xmcl-${{ steps.version.outputs.version }}-${{ matrix.arch }}.pacman"
done
fi
- name: Upload Arch Package
uses: actions/upload-artifact@v4
with:
name: build-Arch-${{ matrix.arch }}
path: ./*.pacman
prepare-release:
runs-on: ubuntu-latest
needs:
- build
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release)') }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9.3.0
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- 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
upload-sourcemap:
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Download Source Map
uses: actions/download-artifact@v4
with:
name: sourcemap
path: sourcemap/${{github.run_number}}
- name: Upload Source Map to Azure
uses: ci010/upload-blob-to-azure@master
env:
AZURE_ACCOUNT_KEY: ${{ secrets.AZURE_ACCOUNT_KEY }}
with:
account: xmcl
container: sourcemap
directory: ./sourcemap
release:
if: startsWith(github.event.head_commit.message, 'chore(release)')
runs-on: ubuntu-latest
needs:
- build
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- uses: pnpm/action-setup@v4
with:
version: 9.3.0
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install
run: |
pnpm install --filter action-*
- name: Download Build
uses: actions/download-artifact@v4
with:
pattern: build-*
merge-multiple: true
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 cijhn@hotmail.com
git tag -f ${{ steps.prepare_release.outputs.tag }}
git push origin tag ${{ steps.prepare_release.outputs.tag }} -f
- name: Emit Version File
run: |
echo ${{ steps.prepare_release.outputs.version }}.${{ github.run_number }} > ./build/version
- name: Patch download links
uses: ./.github/actions/patch-release-note
id: release_note
with:
body: ${{ steps.prepare_release.outputs.changelog }}
version: ${{ steps.prepare_release.outputs.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.release_note.outputs.body }}
asset_dir_path: ./build
- name: Checkout Website
uses: actions/checkout@v4
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 }}
env:
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
- 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 }}