Skip to content

v9.9.0-alpha

v9.9.0-alpha #200

Workflow file for this run

name: Publish Storybook to Github Pages
on:
push:
branches: main
jobs:
build-storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Run install
run: |
yarn install --frozen-lockfile
- name: Storybook static build
run: |
yarn workspace acorn-ui build-storybook
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: web/storybook-static # The folder the action should deploy.