forked from Ferlab-Ste-Justine/ferlab-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 1.12 KB
/
storybook.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
name: Build and Deploy Storybook
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install dependencies and build 🔧
run: | # Install npm packages and build the Storybook files
cd packages/ui
npm install
npm run build
cd ../../storybook
npm install
npm run build-storybook
- name: Deploy 🚀
if: github.event_name == 'push' && github.ref == 'refs/heads/master' # This will prevent the Deploy from being triggered in PRs
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: storybook
folder: storybook/storybook-static # The folder that the build-storybook script generates files.
clean: true # Automatically remove deleted files from the deploy branch
target-folder: docs # The folder that we serve our Storybook files from