We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52debf8 commit 8012f2fCopy full SHA for 8012f2f
.github/workflows/publish.yml
@@ -8,6 +8,11 @@ on:
8
release:
9
types: [published]
10
11
+permissions:
12
+ contents: read
13
+ pages: write
14
+ id-token: write
15
+
16
jobs:
17
publish:
18
runs-on: ubuntu-latest
@@ -23,15 +28,11 @@ jobs:
23
28
node-version: lts/*
24
29
cache: 'yarn'
25
30
26
- - name: Install dependencies
27
- run: yarn install --frozen-lockfile
-
- - name: Build Storybook
- run: yarn build-storybook
31
32
- name: Deploy Storybook
33
uses: bitovi/github-actions-storybook-to-github-pages@v1.0.1
34
with:
+ install_command: yarn install --frozen-lockfile
35
+ build_command: yarn build-storybook
36
path: storybook-static
37
env:
38
GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
0 commit comments