We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23d4dee commit 35496ebCopy full SHA for 35496eb
.github/workflows/build-storybook.yml
@@ -1,13 +1,23 @@
1
-# name: Build and Publish storybook to GitHub Pages
+name: Build and Publish storybook to GitHub Pages
2
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
+on:
+ push:
+ branches:
+ - "main"
+
+permissions:
+ - contents: read
+ - pages: write
+ - id-token: write
+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