Skip to content

publish 3.1.9

publish 3.1.9 #489

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 🔧
env:
VITE_TYPESENSE_COLLECTION: ${{ secrets.VITE_TYPESENSE_COLLECTION }}
VITE_TYPESENSE_URL: ${{ secrets.VITE_TYPESENSE_URL }}
VITE_TYPESENSE_SEARCH_KEY: ${{ secrets.VITE_TYPESENSE_SEARCH_KEY }}
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