-
Notifications
You must be signed in to change notification settings - Fork 10
59 lines (43 loc) · 1.52 KB
/
publish-dev.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
name: publish dev versions
on:
workflow_dispatch:
jobs:
publish-dev-versions:
runs-on: ubuntu-latest
steps:
- name: 🤘 checkout
uses: actions/checkout@v4
- name: ⚙️ Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- uses: oven-sh/setup-bun@v1
- name: 🔐 Authenticate with NPM
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Update npm
run: npm i -g npm@latest
- name: node/npm version
run: node --version && npm --version
- run: npm ci --ignore-scripts
- name: ✌️ Update versions (BUN)
run: bun ./scripts/update-dev-versions.ts
- name: ✌️ Print versions
run: find ./packages -name 'package.json' -not -path '*/node_modules/*' -exec grep -H 'version' {} +
- name: 🛠️ Build
run: npm run build
- name: 🚀 Publish types
working-directory: ./packages/types
run: npm publish --tag dev
- name: 🚀 Publish utils
working-directory: ./packages/utils
run: npm publish --tag dev
- name: 🚀 Publish builder
working-directory: ./packages/builder
run: npm publish --tag dev
- name: 🚀 Publish config
working-directory: ./packages/config
run: npm publish --tag dev
- name: 🚀 Publish sdk
working-directory: ./packages/sdk
run: npm publish --tag dev