Skip to content

Release 2.13.0

Release 2.13.0 #53

Workflow file for this run

name: Build and Deploy Storybook
on:
release:
types: [released]
jobs:
build-storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
registry-url: "https://registry.npmjs.org"
- run: yarn
- name: build storybook
run: |
yarn build-storybook
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn gh-pages -d storybook-static -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}