Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Update README.md

Update README.md #43

Workflow file for this run

name: release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'reaviz/reaselct'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
version: 14.x
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Build Storybook
run: yarn build-storybook
- name: Publish Storybook to GH Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: storybook-static
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Chromatic
run: yarn chromatic