We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 382f32a commit 7358184Copy full SHA for 7358184
1 file changed
.github/workflows/deploy.yml
@@ -26,19 +26,17 @@ jobs:
26
run: uv python install 3.12
27
28
- name: Install dependencies
29
- # Explicitly sync the 'dev' group where jupyter-book lives
30
run: uv sync --all-extras --dev
31
32
- name: Build the book
33
run: |
34
- # Use 'uv run' to ensure the environment is active
35
- # and point specifically to the docs folder
36
- uv run jupyter-book build docs/
+ # Force output to the root-level _build folder
+ uv run jupyter-book build docs/ --path-output ./
37
38
- name: Upload artifact
39
uses: actions/upload-pages-artifact@v3
40
with:
41
- path: 'docs/_build/html'
+ path: '_build/html'
42
43
deploy:
44
needs: build
0 commit comments