Skip to content

fix: update small design misalignments in various components (#608) #62

fix: update small design misalignments in various components (#608)

fix: update small design misalignments in various components (#608) #62

name: Publish storybook
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'packages/web/src/**'
- 'packages/web/.storybook/**'
env:
NODE_OPTIONS: --max-old-space-size=6144
jobs:
build-deploy:
name: Publish storybook
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-node@26961cf329f22f6837d5f54c3efd76b480300ace
with:
node-version: 18
- name: Install gcds-components
run: npm install
- name: Build gcds-components
run: npm run build
- name: Build storybook
run: npm run build-storybook
- name: Deploy
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3.9.3
with:
publish_dir: ./docs
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: storybook
keep_files: true