-
Notifications
You must be signed in to change notification settings - Fork 34
63 lines (53 loc) · 1.37 KB
/
js-sdk.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
name: js-sdk
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
jobs:
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: ./sdks/js
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
- name: Setup pnpm 8
uses: pnpm/action-setup@v2
with:
version: 8.6.9
- name: Setup Node.js 20.x
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Install Dependencies 🔧
run: pnpm i
- name: Build Step 🔧
env:
CI: ""
run: npm run ci:build
- name: Create .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
working-directory: ./sdks/js/packages/core
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Bump Package Version
run: npm run bump-version
working-directory: ./sdks/js/packages/core
env:
GIT_REFNAME: ${{ github.ref_name }}
- name: Run Semantic Release 🚀
run: npm run release:ci
working-directory: ./sdks/js/packages/core
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}