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.
2 parents 5171129 + 40f2abb commit 6bd4cfbCopy full SHA for 6bd4cfb
1 file changed
.github/workflows/docs.yml
@@ -36,8 +36,15 @@ jobs:
36
- name: Build documentation (en + zh)
37
run: |
38
source $HOME/.cargo/env
39
+ # Clean site directory to ensure fresh build
40
+ rm -rf site
41
+ # Build English documentation (outputs to site/)
42
uv run mkdocs build -f mkdocs.en.yml
43
+ # Build Chinese documentation (outputs to site/zh/)
44
uv run mkdocs build -f mkdocs.zh.yml
45
+ # Verify both versions were built
46
+ ls -la site/
47
+ ls -la site/zh/ || echo "Warning: Chinese docs not found"
48
49
- name: Setup Pages
50
uses: actions/configure-pages@v4
0 commit comments