Skip to content

Merge pull request #22 from iamchathu/ci/update-gh-pages-deploy #5

Merge pull request #22 from iamchathu/ci/update-gh-pages-deploy

Merge pull request #22 from iamchathu/ci/update-gh-pages-deploy #5

# Workflow name
name: Build and Publish Storybook to GitHub Pages
on:
# Event for the workflow to run on
push:
branches:
- 'master' # 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
environment:
name: github-pages
url: ${{ steps.build-publish.outputs.page_url }}
# Job steps
steps:
# Manual Checkout
- uses: actions/checkout@v4
# Install pnpm
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
# Set up Node
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
id: build-publish
with:
install_command: pnpm install
build_command: pnpm build-storybook
path: storybook-static
checkout: false