forked from youzan/zent
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (68 loc) · 2.06 KB
/
release.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
name: Release
on:
release:
types: [published]
jobs:
publish-npm:
if: '!github.event.release.prerelease'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
registry-url: https://registry.npmjs.org/
- run: yarn --frozen-lockfile
- run: yarn workspace zent compile-plugins
- run: yarn workspace zent build
- run: yarn workspace zent publish --non-interactive
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
prepublish-npm:
if: 'github.event.release.prerelease'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
registry-url: https://registry.npmjs.org/
- run: yarn --frozen-lockfile
- run: yarn workspace zent compile-plugins
- run: yarn workspace zent build
- run: yarn workspace zent publish --non-interactive --tag=beta
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
deploy-doc:
if: '!github.event.release.prerelease'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn workspace zent-docs build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site/dist
deploy-doc-beta:
if: 'github.event.release.prerelease'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn workspace zent-docs build-beta
- uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.PERSONAL_TOKEN }}
external_repository: 'youzan/zent-beta'
publish_dir: ./site/dist