Skip to content

Commit

Permalink
Merge pull request #23 from fmruiz/develop
Browse files Browse the repository at this point in the history
feat(root): add deploy gh pages
  • Loading branch information
fmruiz authored May 9, 2024
2 parents 730b5e5 + 59e875d commit 182dbf4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy-github-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Workflow name
name: Build and Publish Storybook to GitHub Pages

on:
# Event for the workflow to run on
push:
branches:
- 'master'

permissions:
contents: read
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: '19.x'
- name: Deploy and Install
uses: bitovi/github-actions-storybook-to-github-pages@v1.0.1
with:
install_command: npm install # default: npm ci
build_command: npm run build-storybook # default: npm run build-storybook
path: storybook-static # default: dist/storybook
checkout: false # default: true

0 comments on commit 182dbf4

Please sign in to comment.