Skip to content

Commit 0ba2231

Browse files
authored
Update publish.yaml
Include all */*.ipynb files and not just notebook/*.ipynb
1 parent a88418b commit 0ba2231

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
mkdir -p site
4141
4242
# Convert .ipynb notebooks to HTML fragments (body content only)
43-
for notebook in notebooks/*.ipynb; do
43+
for notebook in */*.ipynb; do
4444
if [ -f "$notebook" ]; then
4545
jupyter nbconvert "$notebook" --to html \
4646
--template classic --HTMLExporter.theme=light \
@@ -435,4 +435,4 @@ jobs:
435435

436436
- name: Deploy to GitHub Pages
437437
id: deployment
438-
uses: actions/deploy-pages@v4
438+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)