We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f27f26 commit 233a317Copy full SHA for 233a317
.github/workflows/run-notebooks.yml
@@ -29,11 +29,11 @@ jobs:
29
for nb in $(git ls-files '*.ipynb'); do
30
echo "Executing $nb"
31
jupyter nbconvert --to notebook --inplace --execute "$nb" --ExecutePreprocessor.timeout=600
32
- jupyter nbconvert --to html "$nb" --output "executed/$(basename "$nb" .ipynb).html"
+ jupyter nbconvert --to html "$nb" --output-dir executed --output "$(basename "$nb" .ipynb)"
33
done
34
35
- name: Upload executed notebooks (HTML)
36
uses: actions/upload-artifact@v4
37
with:
38
name: executed-notebooks
39
- path: executed/
+ path: executed/
0 commit comments