fix: Remove --all flag from jupyter-book build to only generate HTML

This commit is contained in:
Vijay Janapa Reddi
2025-11-08 19:01:53 -05:00
parent baa93c9937
commit 616090d2e7

View File

@@ -44,17 +44,6 @@ jobs:
python-version: '3.11'
cache: 'pip'
- name: Debug - List checked out files
run: |
echo "=== Root directory ==="
ls -la
echo "=== Book directory ==="
ls -la book/ || echo "book/ doesn't exist"
echo "=== Chapters directory ==="
ls -la book/chapters/ || echo "book/chapters/ doesn't exist"
echo "=== Git status ==="
git status
- name: Install dependencies
run: |
pip install --upgrade pip
@@ -65,7 +54,7 @@ jobs:
run: |
cd book
jupyter-book clean . || true
jupyter-book build . --all
jupyter-book build .
- name: Upload book artifact
uses: actions/upload-pages-artifact@v3