Skip to content

Commit 04f57f9

Browse files
committed
force regen
Signed-off-by: Max Pumperla <[email protected]>
1 parent b5ba21f commit 04f57f9

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
2727
- name: Split notebooks and generate navigation
2828
run: |
29-
python split_notebooks.py --no-html
29+
python split_notebooks.py --no-html --force
3030
3131
- name: Build the book
3232
run: |

_config.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,24 @@ html:
1212
sphinx:
1313
config:
1414
html_show_copyright: false
15+
exclude_patterns:
16+
- "venv/**"
17+
- "_build/**"
18+
- "__pycache__/**"
19+
- ".git/**"
20+
- "**/venv/**"
21+
- "**/_build/**"
22+
- "**/__pycache__/**"
23+
- "**/.git/**"
1524
jupyter_execute_notebooks: "off"
1625
execute:
1726
execute_notebooks: "off"
1827
allow_errors: false
19-
exclude_patterns: []
28+
exclude_patterns:
29+
- "**/venv/**"
30+
- "**/_build/**"
31+
- "**/__pycache__/**"
32+
- "**/.git/**"
2033
timeout: 30
2134
stderr_output: remove
2235
stdout_output: remove

0 commit comments

Comments
 (0)