Merge pull request #27 from fmruiz/develop #5
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
# Workflow name | |
name: Build and Publish Storybook to GitHub Pages | |
on: | |
# Event for the workflow to run on | |
push: | |
branches: | |
- 'master' | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
# List of jobs | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
# Manual Checkout | |
- uses: actions/checkout@v3 | |
# Set up Node | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Build | |
run: | | |
npm i | |
npm run build-storybook | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: storybook-static | |
token: ${{ secrets.GH_TOKEN }} |