Skip to content

Commit 7358184

Browse files
committed
Fix pathing
1 parent 382f32a commit 7358184

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,17 @@ jobs:
2626
run: uv python install 3.12
2727

2828
- name: Install dependencies
29-
# Explicitly sync the 'dev' group where jupyter-book lives
3029
run: uv sync --all-extras --dev
3130

3231
- name: Build the book
3332
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/
33+
# Force output to the root-level _build folder
34+
uv run jupyter-book build docs/ --path-output ./
3735
3836
- name: Upload artifact
3937
uses: actions/upload-pages-artifact@v3
4038
with:
41-
path: 'docs/_build/html'
39+
path: '_build/html'
4240

4341
deploy:
4442
needs: build

0 commit comments

Comments
 (0)