Skip to content

chore(storybook): Stop copy buttons rendering more than once (#550) #54

chore(storybook): Stop copy buttons rendering more than once (#550)

chore(storybook): Stop copy buttons rendering more than once (#550) #54

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-node@eff380dfbcf941bf8832e4acb788cebe13dfd758
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