-
-
Notifications
You must be signed in to change notification settings - Fork 68
46 lines (37 loc) · 979 Bytes
/
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
name: release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'reaviz/reagraph'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
version: 18.x
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Build Prod
run: npm run build
- name: Build Storybook
run: npm run build-storybook
# - name: Publish Chromatic
# run: yarn chromatic
- name: Copy Domain
run: npm run copy
- name: Publish Storybook to GH Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: storybook-static
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}