File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Documentation
2+ on :
3+ push :
4+ branches :
5+ - main
6+ permissions :
7+ contents : read
8+ pages : write
9+ id-token : write
10+ jobs :
11+ deploy :
12+ environment :
13+ name : github-pages
14+ url : ${{ steps.deployment.outputs.page_url }}
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v5
18+ - uses : actions/configure-pages@v5
19+ - uses : actions/setup-python@v5
20+ with :
21+ python-version : 3.13
22+ - name : Install uv
23+ uses : astral-sh/setup-uv@v3
24+ with :
25+ version : " latest"
26+ - name : Install dependencies with uv
27+ run : uv sync --only-group docs
28+ - run : uv run --only-group docs zensical build --clean
29+ - uses : actions/upload-pages-artifact@v4
30+ with :
31+ path : site
32+ - uses : actions/deploy-pages@v4
33+ id : deployment
Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ tests/testing_notebook.ipynb
2424docs /notes.txt
2525docs /work_history.md
2626docs /drafts /
27- site /
27+ site /
You can’t perform that action at this time.
0 commit comments