-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (38 loc) · 1.14 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
49
name: Publish
on:
release:
# This specifies that the build will be triggered when we publish a release
types: [published]
jobs:
publish:
name: 'Publish'
runs-on: ubuntu-latest
if: "!contains(github.ref_name, 'beta')"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
publish_beta:
name: 'Publish beta'
runs-on: ubuntu-latest
if: contains(github.ref_name, 'beta')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- run: npm run build
- run: npm publish --tag beta --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}