diff options
| author | 2025-10-14 17:00:22 +0800 | |
|---|---|---|
| committer | 2025-10-14 17:00:22 +0800 | |
| commit | 62977e9a541d1c8cee68cd5cf6b0e3aef040e01e (patch) | |
| tree | cc539ef020199437950c69d0128506d01cac3274 | |
| parent | 75e1f7e13230c5e9380e0d9a29be8efaec33e6fe (diff) | |
| download | OneRoll-62977e9a541d1c8cee68cd5cf6b0e3aef040e01e.tar.gz OneRoll-62977e9a541d1c8cee68cd5cf6b0e3aef040e01e.zip | |
fix: refactor documentation build steps in workflow for clarity
| -rw-r--r-- | .github/workflows/docs.yml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c60fc30..0d739e3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,21 +21,22 @@ jobs: - name: Install dependencies run: | uv sync --all-groups - ls -l source .venv/bin/activate + + - name: Build documentation + run: | + cd docs + make html + make latex + - name: Build LaTeX PDF file uses: xu-cheng/texlive-action@v3 with: run: | - cd docs - ls -l - make html - make latex + pwd make latexpdf - cd ./docs/_build/latex # make - ls -l cp *.pdf ../html/_static/ - name: Deploy to GitHub Pages |
