Skip to content

Commit 35496eb

Browse files
committed
feat: publish storybook in github pages
1 parent 23d4dee commit 35496eb

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

.github/workflows/build-storybook.yml

+22-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
1-
# name: Build and Publish storybook to GitHub Pages
1+
name: Build and Publish storybook to GitHub Pages
22

3-
# on:
4-
# push:
5-
# branches:
6-
# - "main"
7-
# jobs:
8-
# deploy:
9-
# runs-on: ubuntu-latest
10-
# steps:
11-
# - uses: bitovi/github-actions-storybook-to-github-pages@v1.0.0
12-
# with:
13-
# path: dist/storybook
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
8+
permissions:
9+
- contents: read
10+
- pages: write
11+
- id-token: write
12+
13+
jobs:
14+
deploy:
15+
environment:
16+
name: github-pages
17+
url: ${{ steps.build-publish.outputs.page_url }}
18+
runs-on: ubuntu-latest
19+
steps:
20+
- id: build-publish
21+
uses: bitovi/github-actions-storybook-to-github-pages@v1.0.0
22+
with:
23+
path: dist/storybook

0 commit comments

Comments
 (0)