-
Notifications
You must be signed in to change notification settings - Fork 28
56 lines (46 loc) · 1.55 KB
/
docs-deploy-alpha-pages.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
48
49
50
51
52
53
54
55
56
on:
push:
branches:
- "**"
- "!main"
paths:
- "docs/**"
- "packages/recipe/**"
- "packages/stylesheet/**"
- "packages/react/**"
- "packages/stackflow/**"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Deploy seed-design-v3 docs (Alpha)
jobs:
deploy:
name: Deploy Seed Design V3 Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Restore cache
uses: actions/cache@v4
with:
path: |
docs/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-
- name: Install Dependencies
run: bun install --immutable
- name: Build Packages
run: bun build-only-package && bun rootage:build
- name: Build Docs
working-directory: ./docs
run: |
bun run build
- name: Deploy docs at Cloudflare Pages in `seed-design-v3` project (Alpha)
run: |
CLOUDFLARE_ACCOUNT_ID=${{ secrets.CF_ACCOUNT_ID }} \
CLOUDFLARE_API_TOKEN=${{ secrets.CF_API_TOKEN }} \
bun wrangler pages deploy ./docs/out --project-name=seed-design-v3 --branch=${{ github.ref_name }}