diff options
| author | 2025-10-06 01:15:10 +0800 | |
|---|---|---|
| committer | 2025-10-06 01:15:10 +0800 | |
| commit | 4abce3ad753d5a54ee57da588313bc4486a141ec (patch) | |
| tree | c1d22588904cb241933454cb82c4f11143f45a40 /.github/workflows | |
| parent | 12c771ae7152520f7465e96e600daed4abf14ddc (diff) | |
| download | OneRoll-4abce3ad753d5a54ee57da588313bc4486a141ec.tar.gz OneRoll-4abce3ad753d5a54ee57da588313bc4486a141ec.zip | |
chore: add debug output for dependency installation and documentation build steps
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docs.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ae08911..073db50 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,16 +21,19 @@ jobs: - name: Install dependencies run: | uv sync --all-groups + ls -l + source .venv/bin/activate - name: Build documentation run: | cd docs + ls -l make html - - name: Build LaTeX PDF file run: | make latex cd _build/latex + ls -l make cp *.pdf ../html/_static/ |
