-
Notifications
You must be signed in to change notification settings - Fork 66
394 lines (334 loc) · 16 KB
/
release.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
# .github/release.yml
name: release
on:
push:
branches:
- master
jobs:
build_and_publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Install deps
run: yarn
# edgedb
- name: Copy readme
run: cp README.md packages/driver/README.md
- name: Build edgedb
run: yarn workspace edgedb run build
- id: check_publish_driver
name: Dry-run publish 'edgedb' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/driver/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If 'edgedb' version unchanged
if: steps.check_publish_driver.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace edgedb version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/driver/package.json').version")
yarn workspace edgedb version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish 'edgedb'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/driver/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_driver.outputs.type == '' && 'canary' || 'latest' }}
- name: Create 'edgedb' GitHub Release
if: steps.check_publish_driver.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.check_publish_driver.outputs.version }}
name: edgedb-js v${{ steps.check_publish_driver.outputs.version }}
draft: true
prerelease: false
# @edgedb/generate
- name: Build @edgedb/generate
run: yarn workspace @edgedb/generate run build
- id: check_publish_generate
name: Dry-run publish '@edgedb/generate' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/generate/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/generate' version unchanged
if: steps.check_publish_generate.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/generate version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/generate/package.json').version")
yarn workspace @edgedb/generate version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/generate'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/generate/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_generate.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/generate' GitHub Release
if: steps.check_publish_generate.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: generate-v${{ steps.check_publish_generate.outputs.version }}
name: "@edgedb/generate v${{ steps.check_publish_generate.outputs.version }}"
draft: true
prerelease: false
# @edgedb/auth-core
- name: Build @edgedb/auth-core
run: yarn workspace @edgedb/auth-core run build
- id: check_publish_auth_core
name: Dry-run publish '@edgedb/auth-core' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-core/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/auth-core' version unchanged
if: steps.check_publish_auth_core.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/auth-core version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/auth-core/package.json').version")
yarn workspace @edgedb/auth-core version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/auth-core'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-core/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_auth_core.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/auth-core' Release
if: steps.check_publish_auth_core.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-core-v${{ steps.check_publish_auth_core.outputs.version }}
name: "@edgedb/auth-core v${{ steps.check_publish_auth_core.outputs.version }}"
draft: true
prerelease: false
# @edgedb/auth-nextjs
- name: Build @edgedb/auth-nextjs
run: yarn workspace @edgedb/auth-nextjs run build
- id: check_publish_auth_nextjs
name: Dry-run publish '@edgedb/auth-nextjs' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-nextjs/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/auth-nextjs' version unchanged
if: steps.check_publish_auth_nextjs.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/auth-nextjs version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/auth-nextjs/package.json').version")
yarn workspace @edgedb/auth-nextjs version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/auth-nextjs'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-nextjs/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_auth_nextjs.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/auth-nextjs' Release
if: steps.check_publish_auth_nextjs.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-nextjs-v${{ steps.check_publish_auth_nextjs.outputs.version }}
name: "@edgedb/auth-nextjs v${{ steps.check_publish_auth_nextjs.outputs.version }}"
draft: true
prerelease: false
# @edgedb/auth-express
- name: Build @edgedb/auth-express
run: yarn workspace @edgedb/auth-express run build
- id: check_publish_auth_express
name: Dry-run publish '@edgedb/auth-express' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-express/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/auth-express' version unchanged
if: steps.check_publish_auth_express.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/auth-express version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/auth-express/package.json').version")
yarn workspace @edgedb/auth-express version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/auth-express'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-express/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_auth_express.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/auth-express' Release
if: steps.check_publish_auth_express.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-express-v${{ steps.check_publish_auth_express.outputs.version }}
name: "@edgedb/auth-express v${{ steps.check_publish_auth_express.outputs.version }}"
draft: true
prerelease: false
# @edgedb/auth-remix
- name: Build @edgedb/auth-remix
run: yarn workspace @edgedb/auth-remix run build
- id: check_publish_auth_remix
name: Dry-run publish '@edgedb/auth-remix' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-remix/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/auth-remix' version unchanged
if: steps.check_publish_auth_remix.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/auth-remix version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/auth-remix/package.json').version")
yarn workspace @edgedb/auth-remix version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/auth-remix'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-remix/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_auth_remix.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/auth-remix' Release
if: steps.check_publish_auth_remix.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-remix-v${{ steps.check_publish_auth_remix.outputs.version }}
name: "@edgedb/auth-remix v${{ steps.check_publish_auth_remix.outputs.version }}"
draft: true
prerelease: false
# @edgedb/auth-sveltekit
- name: Build @edgedb/auth-sveltekit
run: yarn workspace @edgedb/auth-sveltekit run build
- id: check_publish_auth_sveltekit
name: Dry-run publish '@edgedb/auth-sveltekit' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-sveltekit/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/auth-sveltekit' version unchanged
if: steps.check_publish_auth_sveltekit.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/auth-sveltekit version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/auth-sveltekit/package.json').version")
yarn workspace @edgedb/auth-sveltekit version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/auth-sveltekit'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/auth-sveltekit/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_auth_sveltekit.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/auth-sveltekit' Release
if: steps.check_publish_auth_sveltekit.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-sveltekit-v${{ steps.check_publish_auth_sveltekit.outputs.version }}
name: "@edgedb/auth-sveltekit v${{ steps.check_publish_auth_sveltekit.outputs.version }}"
draft: true
prerelease: false
# @edgedb/create
- name: Build @edgedb/create
run: yarn workspace @edgedb/create run build
- id: check_publish_create
name: Dry-run publish '@edgedb/create' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/create/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/create' version unchanged
if: steps.check_publish_create.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/create version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/create/package.json').version")
yarn workspace @edgedb/create version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/create'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/create/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_create.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/create' Release
if: steps.check_publish_create.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: create-v${{ steps.check_publish_create.outputs.version }}
name: "@edgedb/create v${{ steps.check_publish_create.outputs.version }}"
draft: true
prerelease: false
# @edgedb/ai
- name: Build @edgedb/ai
run: yarn workspace @edgedb/ai run build
- id: check_publish_ai
name: Dry-run publish '@edgedb/ai' to npm
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/ai/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: true
- name: If '@edgedb/ai' version unchanged
if: steps.check_publish_ai.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/ai version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/ai/package.json').version")
yarn workspace @edgedb/ai version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/ai'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
with:
package: packages/ai/package.json
token: ${{ secrets.NPM_TOKEN }}
access: public
tag: ${{ steps.check_publish_ai.outputs.type == '' && 'canary' || 'latest' }}
- name: Create '@edgedb/ai' Release
if: steps.check_publish_ai.outputs.type != ''
uses: softprops/action-gh-release@v2.0.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ai-v${{ steps.check_publish_ai.outputs.version }}
name: "@edgedb/ai v${{ steps.check_publish_ai.outputs.version }}"
draft: true
prerelease: false