-
Notifications
You must be signed in to change notification settings - Fork 50
48 lines (42 loc) · 1.38 KB
/
publish.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
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: |
version="$GITHUB_REF_NAME"
# Sync version number to all package.json files
npm run version $version
if [[ $version == *"beta"* ]]; then
tag=beta
elif [[ $version == *"alpha"* ]]; then
tag=alpha
else
tag=latest
fi
npm publish --access public --tag $tag \
--workspace core \
--workspace connect \
--workspace platforms \
--workspace platforms/evm/protocols \
--workspace platforms/solana/protocols \
--workspace platforms/cosmwasm/protocols \
--workspace platforms/algorand/protocols \
--workspace platforms/sui/protocols \
--workspace platforms/aptos/protocols \
--workspace sdk
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry