-
Notifications
You must be signed in to change notification settings - Fork 7
488 lines (430 loc) · 16.6 KB
/
Copy pathrelease.yml
File metadata and controls
488 lines (430 loc) · 16.6 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
479
480
481
482
483
484
485
486
487
488
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
jobs:
changesets:
name: Changesets
runs-on: ubuntu-latest
outputs:
hasChangesets: ${{ steps.changesets-action.outputs.hasChangesets }}
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Create Release Pull Request
id: changesets-action
uses: changesets/action@v1
with:
version: bun run version
title: "Release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
version:
name: Check versions
runs-on: ubuntu-latest
needs: changesets
if: needs.changesets.outputs.hasChangesets == 'false'
outputs:
cli-version: ${{ steps.check-cli.outputs.version }}
database-shell-version: ${{ steps.check-database-shell.outputs.version }}
openapi-client-version: ${{ steps.check-openapi-client.outputs.version }}
sandbox-version: ${{ steps.check-sandbox.outputs.version }}
scriptable-dns-types-version: ${{ steps.check-scriptable-dns-types.outputs.version }}
steps:
- uses: actions/checkout@v5
- name: Check openapi-client version
id: check-openapi-client
run: |
VERSION=$(node -p "require('./packages/openapi-client/package.json').version")
PUBLISHED=$(npm view @bunny.net/openapi-client version 2>/dev/null || echo "0.0.0")
if [ "$VERSION" != "$PUBLISHED" ]; then
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "New version detected: $VERSION (published: $PUBLISHED)"
else
echo "No version change: $VERSION"
fi
- name: Check sandbox version
id: check-sandbox
run: |
VERSION=$(node -p "require('./packages/sandbox/package.json').version")
PUBLISHED=$(npm view @bunny.net/sandbox version 2>/dev/null || echo "0.0.0")
if [ "$VERSION" != "$PUBLISHED" ]; then
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "New version detected: $VERSION (published: $PUBLISHED)"
else
echo "No version change: $VERSION"
fi
- name: Check scriptable-dns-types version
id: check-scriptable-dns-types
run: |
VERSION=$(node -p "require('./packages/scriptable-dns-types/package.json').version")
PUBLISHED=$(npm view @bunny.net/scriptable-dns-types version 2>/dev/null || echo "0.0.0")
if [ "$VERSION" != "$PUBLISHED" ]; then
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "New version detected: $VERSION (published: $PUBLISHED)"
else
echo "No version change: $VERSION"
fi
- name: Check CLI version
id: check-cli
run: |
VERSION=$(node -p "require('./packages/cli/package.json').version")
PUBLISHED=$(npm view @bunny.net/cli version 2>/dev/null || echo "0.0.0")
if [ "$VERSION" != "$PUBLISHED" ]; then
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "New version detected: $VERSION (published: $PUBLISHED)"
else
echo "No version change: $VERSION"
fi
- name: Check database-shell version
id: check-database-shell
run: |
VERSION=$(node -p "require('./packages/database-shell/package.json').version")
PUBLISHED=$(npm view @bunny.net/database-shell version 2>/dev/null || echo "0.0.0")
if [ "$VERSION" != "$PUBLISHED" ]; then
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "New version detected: $VERSION (published: $PUBLISHED)"
else
echo "No version change: $VERSION"
fi
build-cli-binaries:
name: Build ${{ matrix.npm-pkg }}
needs: version
if: needs.version.outputs.cli-version
strategy:
matrix:
include:
- target: bun-linux-x64
os: ubuntu-latest
npm-pkg: cli-linux-x64
binary: bunny
- target: bun-linux-arm64
os: ubuntu-latest
npm-pkg: cli-linux-arm64
binary: bunny
- target: bun-darwin-x64
os: macos-latest
npm-pkg: cli-darwin-x64
binary: bunny
- target: bun-darwin-arm64
os: macos-latest
npm-pkg: cli-darwin-arm64
binary: bunny
- target: bun-windows-x64
os: ubuntu-latest
npm-pkg: cli-windows-x64
binary: bunny.exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- run: bun install
- name: Build database studio
run: bun run --filter @bunny.net/database-studio build:client
- name: Build binary
run: bun build packages/cli/src/index.ts --compile --minify --sourcemap --target=${{ matrix.target }} --outfile ${{ matrix.binary }}
- name: Prepare npm package
run: cp ${{ matrix.binary }} packages/${{ matrix.npm-pkg }}/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.npm-pkg }}
path: packages/${{ matrix.npm-pkg }}/
if-no-files-found: error
build-cli-baseline:
name: Build ${{ matrix.binary }}
needs: version
if: needs.version.outputs.cli-version
strategy:
matrix:
include:
- target: bun-linux-x64-baseline
os: ubuntu-latest
binary: bunny-linux-x64-baseline
- target: bun-darwin-x64-baseline
os: macos-latest
binary: bunny-darwin-x64-baseline
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- run: bun install
- name: Build database studio
run: bun run --filter @bunny.net/database-studio build:client
# Baseline targets avoid AVX2, so the binary runs on pre-Haswell x64 CPUs that crash the default build with SIGILL.
- name: Build binary
run: bun build packages/cli/src/index.ts --compile --minify --sourcemap --target=${{ matrix.target }} --outfile ${{ matrix.binary }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.binary }}
path: ${{ matrix.binary }}
if-no-files-found: error
build-database-shell-binaries:
name: Build ${{ matrix.npm-pkg }}
needs: version
if: needs.version.outputs.database-shell-version
strategy:
matrix:
include:
- target: bun-linux-x64
os: ubuntu-latest
npm-pkg: database-shell-linux-x64
binary: bsql
- target: bun-linux-arm64
os: ubuntu-latest
npm-pkg: database-shell-linux-arm64
binary: bsql
- target: bun-darwin-x64
os: macos-latest
npm-pkg: database-shell-darwin-x64
binary: bsql
- target: bun-darwin-arm64
os: macos-latest
npm-pkg: database-shell-darwin-arm64
binary: bsql
- target: bun-windows-x64
os: ubuntu-latest
npm-pkg: database-shell-windows-x64
binary: bsql.exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- run: bun install
- name: Build binary
run: bun build packages/database-shell/src/cli.ts --compile --minify --sourcemap --target=${{ matrix.target }} --outfile ${{ matrix.binary }}
- name: Prepare npm package
run: cp ${{ matrix.binary }} packages/${{ matrix.npm-pkg }}/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.npm-pkg }}
path: packages/${{ matrix.npm-pkg }}/
if-no-files-found: error
build-database-shell-baseline:
name: Build ${{ matrix.binary }}
needs: version
if: needs.version.outputs.database-shell-version
strategy:
matrix:
include:
- target: bun-linux-x64-baseline
os: ubuntu-latest
binary: bsql-linux-x64-baseline
- target: bun-darwin-x64-baseline
os: macos-latest
binary: bsql-darwin-x64-baseline
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- run: bun install
# Baseline targets avoid AVX2, so the binary runs on pre-Haswell x64 CPUs that crash the default build with SIGILL.
- name: Build binary
run: bun build packages/database-shell/src/cli.ts --compile --minify --sourcemap --target=${{ matrix.target }} --outfile ${{ matrix.binary }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.binary }}
path: ${{ matrix.binary }}
if-no-files-found: error
publish-cli:
name: Publish CLI
runs-on: ubuntu-latest
needs:
- version
- build-cli-binaries
- build-cli-baseline
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
- name: Download all platform artifacts
uses: actions/download-artifact@v4
with:
path: npm-artifacts
- name: Copy binaries into npm packages
run: |
for pkg in cli-linux-x64 cli-linux-arm64 cli-darwin-x64 cli-darwin-arm64 cli-windows-x64; do
cp -r npm-artifacts/$pkg/* packages/$pkg/
done
# x64 packages also ship a baseline binary the wrapper falls back to on AVX2-less CPUs.
- name: Copy baseline binaries into x64 npm packages
run: |
cp npm-artifacts/bunny-linux-x64-baseline/bunny-linux-x64-baseline packages/cli-linux-x64/bunny-baseline
cp npm-artifacts/bunny-darwin-x64-baseline/bunny-darwin-x64-baseline packages/cli-darwin-x64/bunny-baseline
- name: Set execute permissions
run: |
chmod +x packages/cli-linux-x64/bunny
chmod +x packages/cli-linux-arm64/bunny
chmod +x packages/cli-darwin-x64/bunny
chmod +x packages/cli-darwin-arm64/bunny
chmod +x packages/cli-linux-x64/bunny-baseline
chmod +x packages/cli-darwin-x64/bunny-baseline
- name: Publish platform packages
run: |
for pkg in cli-linux-x64 cli-linux-arm64 cli-darwin-x64 cli-darwin-arm64 cli-windows-x64; do
cd packages/$pkg
npm publish --access public
cd ../..
done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish @bunny.net/cli
run: |
cd packages/cli
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Rename binaries for release
run: |
mv npm-artifacts/cli-linux-x64/bunny npm-artifacts/cli-linux-x64/bunny-linux-x64
mv npm-artifacts/cli-linux-arm64/bunny npm-artifacts/cli-linux-arm64/bunny-linux-arm64
mv npm-artifacts/cli-darwin-x64/bunny npm-artifacts/cli-darwin-x64/bunny-darwin-x64
mv npm-artifacts/cli-darwin-arm64/bunny npm-artifacts/cli-darwin-arm64/bunny-darwin-arm64
mv npm-artifacts/cli-windows-x64/bunny.exe npm-artifacts/cli-windows-x64/bunny-windows-x64.exe
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ needs.version.outputs.cli-version }}
name: v${{ needs.version.outputs.cli-version }}
generate_release_notes: true
files: |
npm-artifacts/cli-linux-x64/bunny-linux-x64
npm-artifacts/cli-linux-arm64/bunny-linux-arm64
npm-artifacts/cli-darwin-x64/bunny-darwin-x64
npm-artifacts/cli-darwin-arm64/bunny-darwin-arm64
npm-artifacts/cli-windows-x64/bunny-windows-x64.exe
npm-artifacts/bunny-linux-x64-baseline/bunny-linux-x64-baseline
npm-artifacts/bunny-darwin-x64-baseline/bunny-darwin-x64-baseline
fail_on_unmatched_files: true
publish-database-shell:
name: Publish database-shell
runs-on: ubuntu-latest
needs:
- version
- build-database-shell-binaries
- build-database-shell-baseline
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
- name: Download all platform artifacts
uses: actions/download-artifact@v4
with:
path: npm-artifacts
- name: Copy binaries into npm packages
run: |
for pkg in database-shell-linux-x64 database-shell-linux-arm64 database-shell-darwin-x64 database-shell-darwin-arm64 database-shell-windows-x64; do
cp -r npm-artifacts/$pkg/* packages/$pkg/
done
# x64 packages also ship a baseline binary the wrapper falls back to on AVX2-less CPUs.
- name: Copy baseline binaries into x64 npm packages
run: |
cp npm-artifacts/bsql-linux-x64-baseline/bsql-linux-x64-baseline packages/database-shell-linux-x64/bsql-baseline
cp npm-artifacts/bsql-darwin-x64-baseline/bsql-darwin-x64-baseline packages/database-shell-darwin-x64/bsql-baseline
- name: Set execute permissions
run: |
chmod +x packages/database-shell-linux-x64/bsql
chmod +x packages/database-shell-linux-arm64/bsql
chmod +x packages/database-shell-darwin-x64/bsql
chmod +x packages/database-shell-darwin-arm64/bsql
chmod +x packages/database-shell-linux-x64/bsql-baseline
chmod +x packages/database-shell-darwin-x64/bsql-baseline
- name: Publish platform packages
run: |
for pkg in database-shell-linux-x64 database-shell-linux-arm64 database-shell-darwin-x64 database-shell-darwin-arm64 database-shell-windows-x64; do
cd packages/$pkg
npm publish --access public
cd ../..
done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish @bunny.net/database-shell
run: |
cd packages/database-shell
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-openapi-client:
name: Publish openapi-client
runs-on: ubuntu-latest
needs: version
if: needs.version.outputs.openapi-client-version
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- run: bun install
- name: Build package
run: bun run --filter @bunny.net/openapi-client build
- uses: actions/setup-node@v5
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
- name: Publish @bunny.net/openapi-client
run: |
cd packages/openapi-client
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-sandbox:
name: Publish sandbox
runs-on: ubuntu-latest
needs: version
if: needs.version.outputs.sandbox-version
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- run: bun install
# Sandbox's build type-checks against openapi-client's package exports (dist/), so build it first.
- name: Build openapi-client
run: bun run --filter @bunny.net/openapi-client build
- name: Build package
run: bun run --filter @bunny.net/sandbox build
# bun publish (not npm) rewrites the workspace:* dependency on @bunny.net/openapi-client to a real version.
- name: Publish @bunny.net/sandbox
run: |
cd packages/sandbox
bun publish --access public
env:
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-scriptable-dns-types:
name: Publish scriptable-dns-types
runs-on: ubuntu-latest
needs: version
if: needs.version.outputs.scriptable-dns-types-version
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
- name: Publish @bunny.net/scriptable-dns-types
run: |
cd packages/scriptable-dns-types
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}