Skip to content

Storybook

Storybook #223

Workflow file for this run

name: Storybook
on:
workflow_run:
workflows: ['CI']
branches: [main]
types:
- completed
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
with:
install-command: yarn install --ignore-engines
- name: Build 🔧
run: | # Install npm packages and build the Storybook files
yarn build-storybook
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: main # The branch the action should deploy to.
FOLDER: docs-build # 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