We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c034d79 commit 745d95aCopy full SHA for 745d95a
.github/workflows/docpublish.yml
@@ -16,7 +16,7 @@ jobs:
16
env:
17
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
run: |
19
- uv run --group docs mkdocs build
+ make build-docs
20
- name: Push doc to Github Page
21
uses: peaceiris/actions-gh-pages@v4
22
with:
Makefile
@@ -27,3 +27,9 @@ deploy-prod:
27
28
down-prod:
29
docker-compose -f ./docker-compose.yml down
30
+
31
+build-docs:
32
+ uv run --group docs mkdocs build
33
34
+serve-docs:
35
+ uv run --group docs mkdocs serve
0 commit comments