-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (68 loc) · 2 KB
/
Copy pathdeploy.yml
File metadata and controls
83 lines (68 loc) · 2 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Deploy Documentation Site to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: LikeC4 code generation
uses: likec4/actions@d36a6b8c87c1d540a3737302808755db435183b0 # v1.89.0
with:
codegen: react
path: likec4_src
output: likec4_react/likec4.generated.js
- name: LikeC4 PNG export
uses: likec4/actions@d36a6b8c87c1d540a3737302808755db435183b0 # v1.89.0
with:
export: png
path: likec4_src
output: public/images/likec4
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: "22"
cache: npm
- name: Setup Pages
uses: actions/configure-pages@v6
- name: Restore Next.js cache
uses: actions/cache@v5
with:
path: |
.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install dependencies
run: npm ci
# Must use `npm run build` (not `npx next build`) so the postbuild
# Pagefind step runs and writes search assets into out/_pagefind.
- name: Build static site
run: npm run build
- name: Verify Pagefind index
run: test -f out/_pagefind/pagefind.js
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5