File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ jobs:
163163 uses : docker/build-push-action@v6
164164 with :
165165 context : .
166- file : ./Dockerfile.chainguard
166+ file : ./Dockerfile
167167 platforms : ${{ env.PLATFORMS }}
168168 push : true
169169 tags : |
Original file line number Diff line number Diff line change @@ -12,13 +12,25 @@ jobs:
1212 runs-on : ubuntu-latest
1313 name : " Sphinx"
1414 steps :
15- - name : Build Sphinx
16- id : deployment
17- uses : sphinx-notes/pages@v3
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Set up Python
19+ uses : actions/setup-python@v5
1820 with :
19- publish : false
20- - name : Publish Sphinx
21+ python-version : " 3.12"
22+
23+ - name : Install uv
24+ uses : astral-sh/setup-uv@v6
25+
26+ - name : Install dependencies
27+ run : uv sync --group docs
28+
29+ - name : Build Sphinx docs
30+ run : uv run sphinx-build -b html docs docs/_build
31+
32+ - name : Publish to GitHub Pages
2133 uses : peaceiris/actions-gh-pages@v4
2234 with :
2335 github_token : ${{ secrets.GITHUB_TOKEN }}
24- publish_dir : ${{ steps.deployment.outputs.artifact }}
36+ publish_dir : docs/_build
File renamed without changes.
You can’t perform that action at this time.
0 commit comments