Skip to content

Merge pull request #26 from fmruiz/develop #4

Merge pull request #26 from fmruiz/develop

Merge pull request #26 from fmruiz/develop #4

# Workflow name
name: Build and Publish Storybook to GitHub Pages
on:
# Event for the workflow to run on
push:
branches:
- 'master'
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'
- name: Build
run: |
npm i
npm run build-storybook
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: storybook-static
token: ${{ secrets.GH_TOKEN }}