-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (72 loc) · 2.29 KB
/
CD.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
name: CD workflow to NPM publish
on:
release:
types: [published]
jobs:
publish:
if: "!github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.release.target_commitish }}
- uses: actions/setup-node@v1
with:
node-version: 14
- run: |
git config --global user.name "JeremyDolle"
git config --global user.email "[email protected]"
npm --no-git-tag-version version ${{ github.event.release.tag_name }}
- name: Install dependencies & build
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile && yarn build
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
- name: Commit and push
run: |
git add .
git commit -am "🏷️(version) Update toolbox to version ${{ github.event.release.tag_name }}"
git push
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
publish-candidate:
if: "github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.release.target_commitish }}
- uses: actions/setup-node@v1
with:
node-version: 14
- run: |
git config --global user.name "JeremyDolle"
git config --global user.email "[email protected]"
npm --no-git-tag-version version ${{ github.event.release.tag_name }}
- name: Install dependencies & build
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile && yarn build
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
tag: ${{ github.event.release.tag_name }}
- name: Commit and push
run: |
git add .
git commit -am "🏷️(version) Update toolbox to rc version ${{ github.event.release.tag_name }}"
git push
env:
github-token: ${{ secrets.GITHUB_TOKEN }}