Skip to content

Commit

Permalink
chore: storybook deploy action (test)
Browse files Browse the repository at this point in the history
  • Loading branch information
inaciogu committed Feb 27, 2024
1 parent 6b76791 commit 7e5df76
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Workflow name
name: Build and Publish Storybook to GitHub Pages

on:
push:
branches:
- main

permissions:
contents: read
pages: write
id-token: write

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.1
with:
path: storybook-static
checkout: false

0 comments on commit 7e5df76

Please sign in to comment.