Skip to content

update docs

update docs #2

Workflow file for this run

name: Build and Deploy
on: push
defaults:
run:
working-directory: website
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install and Build
run: |
yarn install --frozen-lockfile
yarn build-storybook
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: master
folder: docs-build
clean: true
target-folder: docs