Skip to content

release 0.3.2

release 0.3.2 #11

# Workflow name
name: Build and Publish Storybook to GitHub Pages
on:
# Event for the workflow to run on
push:
branches:
- "main" # Replace with the branch you want to deploy from
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@v3
# Set up Node
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- uses: pnpm/action-setup@v2
with:
version: 8
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
with:
install_command: pnpm install # default: npm ci
build_command: pnpm build-storybook # default: npm run build-storybook
path: packages/rsc-daisyui/storybook-static # default: dist/storybook
checkout: false # default: true