Skip to content

Workflow file for this run

# Building and Deploying Storybook on GH-pages
name: Build & Deploy Storybook
on:
release:
types: [created]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install and Build 🔧
run: |
npm install
npm run storybook:build
npm run deploy-storybook
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}