We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13b9c67 commit 0d9ef08Copy full SHA for 0d9ef08
1 file changed
.github/workflows/deploy.yml
@@ -53,13 +53,15 @@ jobs:
53
run: |
54
pip install --upgrade pip
55
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
56
- # Install jupyter-book (latest 2.x) explicitly; pin if stability needed
+ # Install jupyter-book (latest 2.x) for myst-based site builds
57
pip install jupyter-book
58
+ - name: Show Jupyter Book version
59
+ run: jupyter-book --version
60
- name: (Optional) Clean previous builds
61
if: inputs.clean == 'true'
62
run: jupyter-book clean .
- - name: Build book (HTML)
- run: jupyter-book build .
63
+ - name: Build book (HTML site with MyST)
64
+ run: myst build --html
65
- name: List build output (debug)
66
67
ls -R _build/html | head -50 || echo "No html output found"
0 commit comments