Skip to content

Merge pull request #287 from performant-software/feature/cdc205_merge… #313

Merge pull request #287 from performant-software/feature/cdc205_merge…

Merge pull request #287 from performant-software/feature/cdc205_merge… #313

Workflow file for this run

name: Build and Deploy GitHub pages
on:
push:
branches:
- master # Trigger the action only on PR merges into master
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 npm packages and build the Storybook files
yarn install
yarn build-storybook
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: packages/storybook/storybook-static # The folder that the build-storybook script generates files.
clean: true # Automatically remove deleted files from the deploy branch
clean-exclude: '["docs/.nojekyll"]'
target-folder: docs # The folder that we serve our Storybook files from