Skip to content

chore(main): release 7.0.2 #27

chore(main): release 7.0.2

chore(main): release 7.0.2 #27

Workflow file for this run

name: Deploy storybook on GitHub pages
on:
push:
branches: main
env:
NODE_VERSION: 16.x
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm install
- name: Build storybook
run: npm run build-storybook
- name: Deploy to GitHub pages
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
token: ${{ secrets.BOT_TOKEN }}
branch: gh-pages
folder: storybook-static
clean: true