Merge pull request #11 from TFD1992/feature/MlWanderApp_fix #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |