-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (29 loc) · 1.17 KB
/
storybook.yml
File metadata and controls
31 lines (29 loc) · 1.17 KB
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
name: Build and Deploy GitHub pages
on:
push:
branches:
- master # Trigger the action only on PR merges into master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Install and Build 🔧
env:
VITE_TYPESENSE_COLLECTION: ${{ secrets.VITE_TYPESENSE_COLLECTION }}
VITE_TYPESENSE_URL: ${{ secrets.VITE_TYPESENSE_URL }}
VITE_TYPESENSE_SEARCH_KEY: ${{ secrets.VITE_TYPESENSE_SEARCH_KEY }}
run: | # Install npm packages and build the Storybook files
yarn install
yarn build-storybook
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: packages/storybook/storybook-static # The folder that the build-storybook script generates files.
clean: true # Automatically remove deleted files from the deploy branch
clean-exclude: '["docs/.nojekyll"]'
target-folder: docs # The folder that we serve our Storybook files from