-
Notifications
You must be signed in to change notification settings - Fork 214
478 lines (415 loc) · 18.2 KB
/
Copy pathrelease.yml
File metadata and controls
478 lines (415 loc) · 18.2 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
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
name: Release CI
on:
push:
branches:
- 'release/[0-9]+\.[0-9]+\.[0-9]+'
- 'hotfix/[0-9]+\.[0-9]+\.[0-9]+'
- 'pre-release/[0-9]+\.[0-9]+\.[0-9]+-alpha\.[0-9]+'
- 'pre-release/[0-9]+\.[0-9]+\.[0-9]+-beta\.[0-9]+'
- 'pre-release/[0-9]+\.[0-9]+\.[0-9]+-rc\.[0-9]+'
- 'pre-release/[0-9]+\.[0-9]+\.[0-9]+-hotfix\.[0-9]+'
jobs:
release:
runs-on: macos-latest
permissions:
id-token: write # OIDC for npm publish (single entry)
contents: write # push commits / tags
pull-requests: write # create PR from release/* to main
strategy:
matrix:
node-version: [20.x]
concurrency:
group: vchart-release-${{ github.ref_name }}
cancel-in-progress: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git identity
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: './common/config/rush/pnpm-lock.yaml'
- name: Update npm
run: npm install -g npm@latest
- name: Install latest pnpm
run: npm install -g pnpm@10.7.0
- name: Install Python distutils (macOS)
if: runner.os == 'macOS'
run: |
python3 -m pip install setuptools --break-system-packages
- name: Install Python distutils (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y python3-distutils
python3 -m pip install setuptools --break-system-packages
- name: Install native deps for node-canvas (macOS)
if: runner.os == 'macOS'
run: |
brew update
brew install pkg-config cairo pango libpng jpeg giflib librsvg
- name: Install native deps for node-canvas (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev pkg-config
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy
# ===== Release flow (stable) =====
- name: Parse semver (release)
if: startsWith(github.ref_name, 'release/')
id: semver_release
uses: xile611/read-package-version-action@main
with:
path: packages/vchart
semver_string: ${{ github.ref_name }}
semver_pattern: '^release/(.*)$'
- name: update nextBump (release)
if: startsWith(github.ref_name, 'release/')
uses: xile611/set-next-bump-of-rush@main
with:
release_version: ${{ steps.semver_release.outputs.full }}
write_next_bump: true
- name: Generate changelog blocks from changefiles (release)
if: startsWith(github.ref_name, 'release/')
env:
CHANGELOG_API_URL: ${{ secrets.VCHART_CHANGELOG_API_URL }}
CHANGELOG_API_TOKEN: ${{ secrets.VCHART_CHANGELOG_API_TOKEN }}
RELEASE_VERSION: ${{ steps.semver_release.outputs.main }}
run: |
node <<'NODE'
const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
const baseDir = path.join(process.cwd(), 'common', 'changes', '@visactor', 'vchart');
let changefiles = [];
try {
const files = fs.readdirSync(baseDir).filter((name) => name.endsWith('.json'));
for (const file of files) {
const fullPath = path.join(baseDir, file);
const json = JSON.parse(fs.readFileSync(fullPath, 'utf8'));
changefiles.push(json);
}
console.log('Collected changefiles:', changefiles.length);
} catch (e) {
console.log('No changefiles found or unable to read, fallback to empty list.', e.message || e);
}
const version = process.env.RELEASE_VERSION;
if (!version) {
console.error('Missing RELEASE_VERSION env.');
process.exit(1);
}
let prevVersion = process.env.PREV_VERSION || '';
try {
if (!prevVersion) {
const out = execSync('git tag --list "v*.*.*" --sort=-v:refname', { encoding: 'utf8' });
const tags = out.split(/\r?\n/).map((s) => s.trim()).filter(Boolean);
if (tags.length > 0) {
const first = tags[0].replace(/^v/i, '');
if (first !== version && !first.startsWith(version + '-')) {
prevVersion = first;
} else if (tags.length > 1) {
prevVersion = tags[1].replace(/^v/i, '');
}
}
}
} catch (e) {
console.log('Failed to detect previous version from tags, continue without it:', e.message || e);
}
const payload = {
version,
prevVersion: prevVersion || undefined,
date: new Date().toISOString().slice(0, 10),
changefiles,
langs: ['en', 'zh'],
reuseHarmonyFromEn: true,
template: 'default',
};
const baseUrl = process.env.CHANGELOG_API_URL;
const token = process.env.CHANGELOG_API_TOKEN;
function writeFallback() {
const date = payload.date;
const enLines = [
`# v${version}`,
'',
date,
'',
'**🆕 New Features**',
'',
`- TODO: Fill in change details for v${version}.`,
'',
];
const zhLines = [
`# v${version}`,
'',
date,
'',
'**🆕 新增功能**',
'',
`- TODO:补充 v${version} 的更新内容。`,
'',
];
fs.mkdirSync('.changelog', { recursive: true });
fs.writeFileSync('.changelog/en.md', enLines.join('\n') + '\n', 'utf8');
fs.writeFileSync('.changelog/zh.md', zhLines.join('\n') + '\n', 'utf8');
fs.writeFileSync('.changelog/harmony.md', enLines.join('\n') + '\n', 'utf8');
console.log('Wrote fallback changelog blocks for version', version);
}
if (!baseUrl || !token) {
console.log('CHANGELOG_API_URL or CHANGELOG_API_TOKEN not configured, using fallback template.');
writeFallback();
process.exit(0);
}
const url = new URL('/api/changelog/vchart/generate', baseUrl);
const body = JSON.stringify(payload);
const isHttps = url.protocol === 'https:';
const httpModule = isHttps ? require('https') : require('http');
const options = {
method: 'POST',
hostname: url.hostname,
port: url.port || (isHttps ? 443 : 80),
path: url.pathname + url.search,
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`,
'Content-Length': Buffer.byteLength(body),
},
};
const req = httpModule.request(options, (res) => {
let data = '';
res.on('data', (chunk) => (data += chunk));
res.on('end', () => {
if (res.statusCode && res.statusCode >= 200 && res.statusCode < 300) {
try {
const parsed = JSON.parse(data || '{}');
const en = parsed.blocks && parsed.blocks.en;
const zh = parsed.blocks && parsed.blocks.zh;
const harmony = parsed.harmony || en;
if (!en || !zh) {
throw new Error('Missing en/zh blocks in response');
}
fs.mkdirSync('.changelog', { recursive: true });
fs.writeFileSync('.changelog/en.md', String(en).trimEnd() + '\n', 'utf8');
fs.writeFileSync('.changelog/zh.md', String(zh).trimEnd() + '\n', 'utf8');
fs.writeFileSync('.changelog/harmony.md', String(harmony).trimEnd() + '\n', 'utf8');
console.log('Changelog blocks generated via API. traceId:', parsed.traceId || '(none)');
} catch (e) {
console.error('Failed to parse API response, fallback to template:', e.message || e);
writeFallback();
}
} else {
console.error('Changelog API returned non-2xx status:', res.statusCode, data);
writeFallback();
}
});
});
req.on('error', (err) => {
console.error('Changelog API request failed, fallback to template:', err.message || err);
writeFallback();
});
req.write(body);
req.end();
NODE
- name: Prepend changelog blocks into release docs (release)
if: startsWith(github.ref_name, 'release/')
run: |
set -euo pipefail
mkdir -p docs/assets/changelog/en docs/assets/changelog/zh
for lang in en zh; do
block_file=".changelog/${lang}.md"
target_file="docs/assets/changelog/${lang}/release.md"
if [ -f "$block_file" ]; then
if [ -f "$target_file" ]; then
cp "$target_file" "${target_file}.bak"
cat "$block_file" "${target_file}.bak" > "$target_file"
else
cp "$block_file" "$target_file"
fi
else
echo "Missing changelog block for $lang, skip."
fi
done
harmony_block=".changelog/harmony.md"
harmony_target="packages/harmony_vchart/library/CHANGELOG.md"
if [ -f "$harmony_block" ]; then
if [ -f "$harmony_target" ]; then
cp "$harmony_target" "${harmony_target}.bak"
cat "$harmony_block" "${harmony_target}.bak" > "$harmony_target"
else
cp "$harmony_block" "$harmony_target"
fi
else
echo "Missing harmony changelog block, skip."
fi
- name: Generate rush version (release)
if: startsWith(github.ref_name, 'release/')
run: node common/scripts/install-run-rush.js version --bump
- name: Update version (release)
if: startsWith(github.ref_name, 'release/')
run: node common/scripts/apply-release-version.js 'none' ${{ steps.semver_release.outputs.main }}
- name: Build vutils-extension && vchart
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --to @visactor/vchart
- name: Build vchart-extension
if: startsWith(github.ref_name, 'release/') || startsWith(github.ref_name, 'pre-release/')
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/vchart-extension
- name: Build react-vchart
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/react-vchart
- name: Build openinula-vchart
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/openinula-vchart
- name: Build taro-vchart
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/taro-vchart
- name: Build lark-vchart
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/lark-vchart
- name: Build wx-vchart
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/wx-vchart
- name: Publish to npm (release)
if: startsWith(github.ref_name, 'release/')
run: node common/scripts/install-run-rush.js publish --publish --include-all --tag latest
- name: Update shrinkwrap
run: node common/scripts/install-run-rush.js update
- name: Get npm version (release)
if: startsWith(github.ref_name, 'release/')
id: package_version_release
uses: xile611/read-package-version-action@main
with:
path: packages/vchart
- name: BytePack CDN smoke test (release)
if: startsWith(github.ref_name, 'release/')
env:
BYTEPACK_SMOKE_ATTEMPTS: 12
BYTEPACK_SMOKE_DELAY_MS: 30000
run: node --experimental-network-imports common/scripts/bytepack-smoke-test.mjs ${{ steps.package_version_release.outputs.current_version }}
- name: Commit & Push changes (release)
if: startsWith(github.ref_name, 'release/')
run: |
set -euo pipefail
if git diff --quiet; then
echo 'No changes to commit for release branch.'
else
git add .
git commit -m "build: release version ${{ steps.package_version_release.outputs.current_version }} [skip ci]" -n
git push --no-verify origin ${{ github.ref_name }}
fi
- name: Create Pull Request to main (release)
if: startsWith(github.ref_name, 'release/')
env:
GH_TOKEN: ${{ github.token }}
run: |
set -euo pipefail
BRANCH="${GITHUB_REF_NAME}"
echo "Source branch: $BRANCH"
# Check if PR already exists
if gh pr list --base main --head "$BRANCH" --state open --json number --limit 1 | grep -q '"number"'; then
echo "PR from $BRANCH to main already exists, skip creating.";
exit 0;
fi
TITLE="[Auto release] release ${{ steps.package_version_release.outputs.current_version }}"
BODY="This PR merges release branch $BRANCH into main."
gh pr create --base main --head "$BRANCH" --title "$TITLE" --body "$BODY"
# ===== Hotfix flow =====
- name: Parse semver (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
id: semver_hotfix
uses: xile611/read-package-version-action@main
with:
path: packages/vchart
semver_string: ${{ github.ref_name }}
semver_pattern: '^hotfix/(.*)$'
- name: update nextBump (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
uses: xile611/set-next-bump-of-rush@main
with:
release_version: ${{ steps.semver_hotfix.outputs.full }}
write_next_bump: true
- name: Generate rush version (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
run: node common/scripts/install-run-rush.js version --bump
- name: Update version (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
run: node common/scripts/apply-release-version.js 'none' ${{ steps.semver_hotfix.outputs.main }}
- name: Publish to npm (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
run: node common/scripts/install-run-rush.js publish --publish --include-all --tag hotfix
- name: Get npm version (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
id: package_version_hotfix
uses: xile611/read-package-version-action@main
with:
path: packages/vchart
- name: BytePack CDN smoke test (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
env:
BYTEPACK_SMOKE_ATTEMPTS: 12
BYTEPACK_SMOKE_DELAY_MS: 30000
run: node --experimental-network-imports common/scripts/bytepack-smoke-test.mjs ${{ steps.package_version_hotfix.outputs.current_version }}
- name: Commit & Push changes (hotfix)
if: startsWith(github.ref_name, 'hotfix/')
run: |
set -euo pipefail
if git diff --quiet; then
echo 'No changes to commit for hotfix branch.'
else
git add .
git commit -m "build: hotfix version ${{ steps.package_version_hotfix.outputs.current_version }} [skip ci]" -n
git push --no-verify origin ${{ github.ref_name }}
fi
# ===== Pre-release flow =====
- name: Parse semver (pre-release)
if: startsWith(github.ref_name, 'pre-release/')
id: semver_prerelease
uses: xile611/read-package-version-action@main
with:
path: packages/vchart
semver_string: ${{ github.ref_name }}
semver_pattern: '^pre-release/(.*)$'
- name: Apply prereleaseName (pre-release)
if: startsWith(github.ref_name, 'pre-release/')
run: node common/scripts/apply-release-version.js ${{ steps.semver_prerelease.outputs.pre_release_name }} ${{ steps.semver_prerelease.outputs.main }}
- name: Publish to npm (pre-release)
if: startsWith(github.ref_name, 'pre-release/')
run: node common/scripts/install-run-rush.js publish --publish --include-all --tag ${{ steps.semver_prerelease.outputs.pre_release_type }}
- name: Get npm version (pre-release)
if: startsWith(github.ref_name, 'pre-release/')
id: package_version_prerelease
uses: xile611/read-package-version-action@main
with:
path: packages/vchart
- name: BytePack CDN smoke test (pre-release)
if: startsWith(github.ref_name, 'pre-release/')
env:
BYTEPACK_SMOKE_ATTEMPTS: 12
BYTEPACK_SMOKE_DELAY_MS: 30000
run: node --experimental-network-imports common/scripts/bytepack-smoke-test.mjs ${{ steps.package_version_prerelease.outputs.current_version }}
- name: Commit & Push changes (pre-release)
if: startsWith(github.ref_name, 'pre-release/')
run: |
set -euo pipefail
if git diff --quiet; then
echo 'No changes to commit for pre-release branch.'
else
git add .
git commit -m "build: prerelease version ${{ steps.package_version_prerelease.outputs.current_version }} [skip ci]" -n
git push --no-verify origin ${{ github.ref_name }}
fi