Skip to content

Triggering gh-pages build/deploy, again #23

Triggering gh-pages build/deploy, again

Triggering gh-pages build/deploy, again #23

Workflow file for this run

name: Build and Deploy
on:
push:
paths: ["stories/**", "src/components/**"] # Trigger the action only when files change in the folders defined here
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
yarn build-storybook
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.
with:
folder: storybook-static # The folder that the build-storybook script generates files.
clean: true # Automatically remove deleted files from the deploy branch