-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (40 loc) · 1.46 KB
/
buildStorybook.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
name: Update Storybook
on:
push:
branches: [main]
jobs:
release:
name: Update Storybook
runs-on: ubuntu-latest
env:
TZ: Australia/Brisbane
CI: true
steps:
- uses: actions/checkout@main
with:
fetch-depth: 0
- name: Setup environment
id: setups
run: |-
echo "::set-output name=yarn_cache::$(yarn cache dir)"
echo "::set-output name=node_version::$(jq -r '.volta.node' package.json)"
- name: Setup Node ${{ steps.setups.outputs.node_version }}
uses: actions/setup-node@main
with:
node-version: ${{ steps.setups.outputs.node_version }}
check-latest: true
- name: Yarn cache
uses: actions/cache@main
with:
path: ${{ steps.setups.outputs.yarn_cache }}
key:
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock')
}}-node-${{ steps.setups.outputs.node_version }}
- run: yarn --frozen-lockfile
- name: Build storybook artefacts
run: yarn storybook:build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./storybook-static