Skip to content

major upgrade react-scripts from 4.0.3 to 5.0.1 #41

major upgrade react-scripts from 4.0.3 to 5.0.1

major upgrade react-scripts from 4.0.3 to 5.0.1 #41

Workflow file for this run

name: Build and deploy storybook
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Install and build 🔧
run: | # Install packages and build the Storybook files
yarn
yarn build-catalogue-meta
yarn build-catalogue-markdown-docs
yarn build-storybook
npx sb extract ./docs-build ./docs-build/stories.json
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: main # The branch the action should deploy to.
FOLDER: docs-build # The folder that the build-storybook script generates files.
CLEAN: true # Automatically remove deleted files from the deploy branch
TARGET_FOLDER: docs # The folder that we serve our Storybook files from