File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy Docs to GitHub Pages
2+
3+ on :
4+ push :
5+ branches : [master]
6+ workflow_dispatch :
7+
8+ # Allow only one concurrent deployment, skipping runs queued between the
9+ # run in-progress and latest queued. Do not cancel in-progress runs.
10+ concurrency :
11+ group : pages
12+ cancel-in-progress : false
13+
14+ permissions :
15+ contents : read
16+ pages : write
17+ id-token : write
18+
19+ jobs :
20+ build :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+ with :
26+ # Full history so VitePress `lastUpdated` reads accurate per-page commit times
27+ fetch-depth : 0
28+
29+ - name : Setup Node
30+ uses : actions/setup-node@v4
31+ with :
32+ node-version : 20
33+ cache : npm
34+
35+ - name : Install dependencies
36+ run : npm ci
37+
38+ - name : Build with VitePress
39+ run : npm run docs:build
40+
41+ - name : Configure Pages
42+ uses : actions/configure-pages@v5
43+
44+ - name : Upload artifact
45+ uses : actions/upload-pages-artifact@v3
46+ with :
47+ path : docs/.vitepress/dist
48+
49+ deploy :
50+ needs : build
51+ runs-on : ubuntu-latest
52+ environment :
53+ name : github-pages
54+ url : ${{ steps.deployment.outputs.page_url }}
55+ steps :
56+ - name : Deploy to GitHub Pages
57+ id : deployment
58+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ docs.waterdog.dev
You can’t perform that action at this time.
0 commit comments