debug: Add directory listing after build to diagnose missing HTML output

This commit is contained in:
Vijay Janapa Reddi
2025-11-08 19:04:36 -05:00
parent 48714ca594
commit 3c7bd5d331

View File

@@ -55,6 +55,12 @@ jobs:
cd book
jupyter-book clean . || true
jupyter-book build .
echo "=== Contents of book after build ==="
ls -la
echo "=== Contents of _build (if exists) ==="
ls -la _build/ || echo "_build doesn't exist"
echo "=== Contents of _build/html (if exists) ==="
ls -la _build/html/ || echo "_build/html doesn't exist"
- name: Upload book artifact
uses: actions/upload-pages-artifact@v3