Skip to content

Commit 496296d

Browse files
committed
fix; gh action
1 parent 12c55bb commit 496296d

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/deploy-book.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,16 @@ jobs:
3030
python-version: "3.10"
3131

3232
- name: Install Jupyter Book
33-
run: pip install jupyter-book
33+
run: |
34+
python -m pip install --upgrade pip
35+
python -m pip install "jupyter-book"
3436
3537
- name: Build Jupyter Book site
36-
run: jb build .
38+
run: |
39+
jb build . --path-output _build
40+
41+
- name: Ensure GitHub Pages compatibility
42+
run: touch _build/html/.nojekyll
3743

3844
- name: Copy assets to build folder
3945
run: |

0 commit comments

Comments
 (0)