Skip to content
# Workflow name
name: Build and Publish Storybook to GitHub Pages
on:
workflow_dispatch:
release:
types: [published]
permissions:
contents: read
pages: write
id-token: write
# List of jobs
jobs:
deploy:
runs-on: ubuntu-latest
# Job steps
steps:
# Manual Checkout
- uses: actions/checkout@v4
# Set up Node
- uses: actions/setup-node@v3
with:
node-version: "20.x"
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
with:
build_command: npm run storybook:build # default: npm run build-storybook
path: docs # default: dist/storybook
checkout: false # default: true