Skip to content

Merge pull request #12 from Teradata/fix/storybook-source-code #17

Merge pull request #12 from Teradata/fix/storybook-source-code

Merge pull request #12 from Teradata/fix/storybook-source-code #17

Workflow file for this run

# 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
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
permissions:
contents: read
pages: write
id-token: write
# List of jobs
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.build-publish.outputs.page_url }}
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'
cache: 'npm'
#👇 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: dist/storybook/react-components # default: dist/storybook
checkout: false # default: true