-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (32 loc) · 1.02 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
# Copyright (c) TotalSoft.
# This source code is licensed under the MIT license.
name: Build and Deploy Storybook
on:
push:
branches:
- master
paths: ['src/stories/**', 'src/components/**'] # Trigger the action only when files change in the folders defined here
workflow_dispatch:
permissions:
contents: write
jobs:
storybook-build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install 🔧
run: yarn install
- name: Run tests ⚠️
run: yarn test
- name: Build 🔧
run: yarn run build-storybook
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.STORYBOOK_TOKEN }}
BRANCH: gh-pages
FOLDER: storybuild # The folder that the build-storybook script generates files.
CLEAN: true # Automatically remove deleted files from the deploy branch