Skip to content

Commit e9f4d6e

Browse files
Fix: Skip notebook execution via config, not CLI flag
1 parent 03bd1c6 commit e9f4d6e

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: 📘 Build & Deploy Jupyter Book
33
on:
44
push:
55
branches:
6-
- main # or 'master' if that's your default
6+
- main
77

88
permissions:
99
contents: write
@@ -26,9 +26,9 @@ jobs:
2626
pip install -U pip
2727
pip install jupyter-book
2828
29-
- name: 🧱 Build Jupyter Book (no execution)
29+
- name: 🧱 Build Jupyter Book (skip execution via config)
3030
run: |
31-
jupyter-book build . --no-execute
31+
jupyter-book build .
3232
3333
- name: 🚀 Deploy to GitHub Pages
3434
uses: peaceiris/actions-gh-pages@v3

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ author: Shravan Kumar Parunandula
33
logo: null
44
language: en
55
only_build_toc_files: true
6+
execute:
7+
execute_notebooks: "off"
8+

0 commit comments

Comments
 (0)