From 5a3db1e3560b7a1af7c97617c77657a536525846 Mon Sep 17 00:00:00 2001 From: Dario Coscia Date: Sat, 15 Mar 2025 20:37:03 +0100 Subject: [PATCH] update html dir --- .github/workflows/export_tutorials.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/export_tutorials.yml b/.github/workflows/export_tutorials.yml index cdae25c..4b009a1 100644 --- a/.github/workflows/export_tutorials.yml +++ b/.github/workflows/export_tutorials.yml @@ -46,7 +46,7 @@ jobs: pyfilename=$(echo ${filename%?????})py timeout --signal=SIGKILL $TUTORIAL_TIMEOUT python -Xfrozen_modules=off -m jupyter nbconvert $file --to python --output $pyfilename --output-dir=$(dirname $file) htmlfilename=$(echo ${filename%?????} | sed -e 's/-//g')html - htmldir="docs/source"/$(echo ${file%?????} | sed -e 's/-//g')html + htmldir="docs/source"/$(echo ${file%??????????????} | sed -e 's/-//g') timeout --signal=SIGKILL $TUTORIAL_TIMEOUT python -Xfrozen_modules=off -m jupyter nbconvert --execute $file --to html --output $htmlfilename --output-dir=$htmldir fi done