We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03bd1c6 commit e9f4d6eCopy full SHA for e9f4d6e
2 files changed
.github/workflows/deploy.yml
@@ -3,7 +3,7 @@ name: 📘 Build & Deploy Jupyter Book
3
on:
4
push:
5
branches:
6
- - main # or 'master' if that's your default
+ - main
7
8
permissions:
9
contents: write
@@ -26,9 +26,9 @@ jobs:
26
pip install -U pip
27
pip install jupyter-book
28
29
- - name: 🧱 Build Jupyter Book (no execution)
+ - name: 🧱 Build Jupyter Book (skip execution via config)
30
run: |
31
- jupyter-book build . --no-execute
+ jupyter-book build .
32
33
- name: 🚀 Deploy to GitHub Pages
34
uses: peaceiris/actions-gh-pages@v3
_config.yml
@@ -3,3 +3,6 @@ author: Shravan Kumar Parunandula
logo: null
language: en
only_build_toc_files: true
+execute:
+ execute_notebooks: "off"
+
0 commit comments