chore: trad comments #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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@v4 | |
# Set up Node | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
# Install pnpm | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow | |
- uses: bitovi/[email protected] | |
with: | |
install_command: cd example && pnpm install --frozen-lockfile # default: npm ci | |
build_command: cd example && pnpm build # default: npm run build-storybook | |
path: example/storybook-static # default: storybook-static | |
checkout: false # default: true |