Skip to content

docs: fix stories are not rendered #57

docs: fix stories are not rendered

docs: fix stories are not rendered #57

Workflow file for this run

name: Build and Publish Docs to GitHub Pages
on:
push:
branches:
- 'main'
tags:
- '*'
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@v3
with:
version: 8
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
env:
BASE_PATH: /plusauth-widget/
with:
install_command: pnpm install # default: npm ci
build_command: pnpm run build-storybook # default: npm run build-storybook
path: storybook-static # default: dist/storybook
checkout: false # default: true