-
Notifications
You must be signed in to change notification settings - Fork 10
48 lines (36 loc) · 1.2 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
name: publish dev versions
on:
workflow_dispatch:
jobs:
publish-dev-versions:
runs-on: ubuntu-latest
steps:
- name: 🤘 checkout
uses: actions/checkout@v3
- name: ⚙️ Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 18.x
cache: 'npm'
- name: 🔐 Authenticate with NPM
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- run: npm ci --ignore-scripts
- name: ✌️ Update versions
run: npx ts-node --esm ./scripts/update-dev-versions.ts
- 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