We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d7917 commit 81e1e51Copy full SHA for 81e1e51
1 file changed
.github/workflows/deploy-storybook.yml
@@ -17,6 +17,15 @@ jobs:
17
- name: Checkout
18
uses: actions/checkout@v4
19
20
+ - name: Validate Storybook auth client id
21
+ env:
22
+ STORYBOOK_AUTH_CLIENT_ID: ${{ secrets.STORYBOOK_AUTH_CLIENT_ID }}
23
+ run: |
24
+ if [ -z "$STORYBOOK_AUTH_CLIENT_ID" ]; then
25
+ echo "STORYBOOK_AUTH_CLIENT_ID is not set. Add it as a GitHub Actions secret."
26
+ exit 1
27
+ fi
28
+
29
- name: Use Node.js 20
30
uses: actions/setup-node@v4
31
with:
@@ -30,6 +39,8 @@ jobs:
39
40
- name: Build Storybook static
32
41
working-directory: packages/apps/storybook
42
43
33
44
run: |
34
45
set -e
35
46
node ../../../common/scripts/install-run-rushx.js build-storybook
0 commit comments