We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef32433 commit 8cf7730Copy full SHA for 8cf7730
.github/workflows/book.yml
@@ -38,7 +38,7 @@ jobs:
38
mkdir -p artifacts/marimo
39
40
# Find all Python files in the notebooks directory and export them to HTML-WASM
41
- for notebook in *.py; do
+ for notebook in book/marimo/*.py; do
42
# Extract the filename without extension
43
filename=$(basename "$notebook" .py)
44
echo "Exporting $notebook to HTML-WASM..."
@@ -54,7 +54,6 @@ jobs:
54
echo "Exported notebooks:"
55
ls -la artifacts/marimo/
56
tree artifacts/marimo
57
- working-directory: book/marimo
58
59
# Upload the generated HTML-WASM files as a GitHub Actions artifact
60
# This makes the files available for the deployment job
0 commit comments