We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12c55bb commit 496296dCopy full SHA for 496296d
1 file changed
.github/workflows/deploy-book.yml
@@ -30,10 +30,16 @@ jobs:
30
python-version: "3.10"
31
32
- name: Install Jupyter Book
33
- run: pip install jupyter-book
+ run: |
34
+ python -m pip install --upgrade pip
35
+ python -m pip install "jupyter-book"
36
37
- name: Build Jupyter Book site
- run: jb build .
38
39
+ jb build . --path-output _build
40
+
41
+ - name: Ensure GitHub Pages compatibility
42
+ run: touch _build/html/.nojekyll
43
44
- name: Copy assets to build folder
45
run: |
0 commit comments