Skip to content

Commit

Permalink
chore(storybook): fix workflow
Browse files Browse the repository at this point in the history
ooooorobo committed Jun 6, 2024
1 parent b5b75d2 commit 8d4c676
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,35 @@
name: Build and Publish storybook to GitHub Pages
# Workflow name
name: Build and Publish Storybook to GitHub Pages

on:
# Event for the workflow to run on
push:
branches:
- "main"
- '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:
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.0
# Manual Checkout
- uses: actions/checkout@v4

# Set up Node
- uses: actions/setup-node@v4
with:
node-version: '16.x'

#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3
with:
path: storybook-static
install_command: npm install # default: npm ci
build_command: npm build-storybook # default: npm run build-storybook
path: storybook-static # default: dist/storybook
checkout: false # default: true

0 comments on commit 8d4c676

Please sign in to comment.