-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 1.1 KB
/
deploy-storybook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Workflow name
name: Build and Publish Storybook to GitHub Pages
on:
# Event for the workflow to run on
push:
branches:
- 'main' # Replace with the branch you want to deploy from
permissions:
contents: read
pages: write
id-token: write
# List of jobs
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./next
# Job steps
steps:
# Manual Checkout
- uses: actions/checkout@v4
# Set up Node
- uses: actions/setup-node@v4
with:
node-version: '20.x'
# Set the working directory and install dependencies
- name: Install dependencies
run: npm install
working-directory: ./next
# Build Storybook
- name: Build Storybook
run: npm run build-storybook
working-directory: ./next
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
with:
path: ./next/storybook-static # default: dist/storybook
checkout: false # default: true