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 to Pages
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+
7+ permissions :
8+ contents : read
9+ pages : write
10+ id-token : write
11+
12+ concurrency :
13+ group : " pages"
14+ cancel-in-progress : false
15+
16+ jobs :
17+ build :
18+ runs-on : ubuntu-latest
19+ env :
20+ GITHUB_PAGES : true # for npm build
21+ VITE_GITHUB_PAGES : true # for runtime
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v5
25+
26+ - name : Setup Node
27+ uses : actions/setup-node@v6
28+ with :
29+ node-version : 24
30+ cache : npm
31+
32+ - name : Install dependencies
33+ run : npm ci
34+
35+ - name : Build with VitePress
36+ run : npm run build
37+
38+ - uses : actions/upload-pages-artifact@v3
39+ with :
40+ path : docs/.vitepress/dist
41+
42+ deploy :
43+ needs : build
44+ runs-on : ubuntu-latest
45+
46+ environment :
47+ name : github-pages
48+ url : ${{ steps.deployment.outputs.page_url }}
49+
50+ steps :
51+ - name : Deploy to GitHub Pages
52+ uses : actions/deploy-pages@v4
53+ id : deployment
Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ export default defineConfig({
2424
2525 socialLinks : [ { icon : 'github' , link : 'https://github.com/git-calendar' } ] ,
2626 } ,
27- srcDir : '. ',
27+ base : process . env . GITHUB_PAGES == 'true' ? '/documentation/' : '/ ',
2828} ) ;
You can’t perform that action at this time.
0 commit comments