-
Notifications
You must be signed in to change notification settings - Fork 9
287 lines (253 loc) · 9.16 KB
/
Copy pathrelease.yml
File metadata and controls
287 lines (253 loc) · 9.16 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
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@v4
- 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 }}
steps:
- uses: actions/checkout@v4
- 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@v4
- 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-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@v4
- 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
publish-cli:
name: Publish CLI
runs-on: ubuntu-latest
needs:
- version
- build-cli-binaries
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
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
- 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
- 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
fail_on_unmatched_files: true
publish-database-shell:
name: Publish database-shell
runs-on: ubuntu-latest
needs:
- version
- build-database-shell-binaries
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
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
- 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
- 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 }}