Skip to content

Commit 233a317

Browse files
authored
Update output path for HTML conversion of notebooks
1 parent 3f27f26 commit 233a317

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run-notebooks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
for nb in $(git ls-files '*.ipynb'); do
3030
echo "Executing $nb"
3131
jupyter nbconvert --to notebook --inplace --execute "$nb" --ExecutePreprocessor.timeout=600
32-
jupyter nbconvert --to html "$nb" --output "executed/$(basename "$nb" .ipynb).html"
32+
jupyter nbconvert --to html "$nb" --output-dir executed --output "$(basename "$nb" .ipynb)"
3333
done
3434
3535
- name: Upload executed notebooks (HTML)
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: executed-notebooks
39-
path: executed/
39+
path: executed/

0 commit comments

Comments
 (0)