forked from NeuraLegion/sectester-js
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (63 loc) · 1.74 KB
/
deploy.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
64
65
66
67
68
69
70
71
72
73
74
75
name: Automated deploy
on:
release:
types: [created]
env:
DEPENDENCIES_CACHE: npm-cache
VERSION: ${{ github.event.release.tag_name }}
TARGET_REF: ${{ github.event.release.target_commitish }}
TAG: ${{ github.event.release.target_commitish == 'master' && 'latest' || 'next' }}
jobs:
install-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}
- name: Install deps
uses: ./.github/workflows/composite/npm
with:
cache: ${{ env.DEPENDENCIES_CACHE }}
build:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}
- name: Install deps
uses: ./.github/workflows/composite/npm
with:
cache: ${{ env.DEPENDENCIES_CACHE }}
- name: Build package
run: npm run build:all
- uses: actions/upload-artifact@v2
with:
name: build
path: |
dist
package.json
package-lock.json
README.md
LICENSE
publish:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}
- uses: actions/download-artifact@v2
with:
name: build
- name: Install deps
uses: ./.github/workflows/composite/npm
with:
cache: ${{ env.DEPENDENCIES_CACHE }}
- name: Publish package to NPM
run: npm run publish:all -- --tag $TAG
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}