-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (39 loc) · 1.14 KB
/
publish.yaml
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
name: Publish
on:
release:
types: [created]
jobs:
build:
uses: consenlabs/tokenlon-contracts-lib-js/.github/workflows/build.yaml@3aeb7866eea82a1dce48161f02b333def35e594e
secrets: inherit
publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14
uses: actions/setup-node@v3
with:
node-version: 14
registry-url: "https://registry.npmjs.org"
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn run build
- name: Get dist tag
run: |
case "${{ github.event.release.name }}" in
*"rc"* | *"canary"*)
echo "DIST_TAG=canary" >> $GITHUB_ENV;;
*"dev"*)
echo "DIST_TAG=dev" >> $GITHUB_ENV;;
*"beta"*)
echo "DIST_TAG=beta" >> $GITHUB_ENV;;
*)
echo "DIST_TAG=latest" >> $GITHUB_ENV;;
esac
- name: Publish
working-directory: dist
run: npm publish --access public --tag ${{ env.DIST_TAG }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}