audit-labs/tutorials
Learn how to perform data analysis, scripting, automation, and more!
clone: git clone https://gitbay.org/audit-labs/tutorials.git
233a317c7b33434051eb7756dff3ff3dcda8dab5
signed_unknown_key
author: christian <hello@cleberg.net> · 2026-01-27T22:35:37Z
committer: <noreply@github.com>
.github/workflows/run-notebooks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) @@ -29,11 +29,11 @@ jobs: for nb in $(git ls-files '*.ipynb'); do echo "Executing $nb" jupyter nbconvert --to notebook --inplace --execute "$nb" --ExecutePreprocessor.timeout=600 - jupyter nbconvert --to html "$nb" --output "executed/$(basename "$nb" .ipynb).html" + jupyter nbconvert --to html "$nb" --output-dir executed --output "$(basename "$nb" .ipynb)" done - name: Upload executed notebooks (HTML) uses: actions/upload-artifact@v4 with: name: executed-notebooks - path: executed/ \ No newline at end of file + path: executed/