We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4587146 commit ebed294Copy full SHA for ebed294
.github/workflows/deploy.yml
@@ -0,0 +1,26 @@
1
+name: Build and Publish Storybook to GitHub Pages
2
+
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
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
+ - uses: actions/setup-node@v4
21
22
+ node-version: '20'
23
+ - uses: bitovi/[email protected]
24
25
+ path: storybook-static
26
+ checkout: false
0 commit comments