aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2025-10-14 17:00:22 +0800
committerHsiangNianian <i@jyunko.cn>2025-10-14 17:00:22 +0800
commit62977e9a541d1c8cee68cd5cf6b0e3aef040e01e (patch)
treecc539ef020199437950c69d0128506d01cac3274
parent75e1f7e13230c5e9380e0d9a29be8efaec33e6fe (diff)
downloadOneRoll-62977e9a541d1c8cee68cd5cf6b0e3aef040e01e.tar.gz
OneRoll-62977e9a541d1c8cee68cd5cf6b0e3aef040e01e.zip
fix: refactor documentation build steps in workflow for clarity
-rw-r--r--.github/workflows/docs.yml15
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