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 48fc642 commit f0f2f92Copy full SHA for f0f2f92
.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 notebooks/*.py; do
+ for notebook in *.py; do
42
# Extract the filename without extension
43
filename=$(basename "$notebook" .py)
44
echo "Exporting $notebook to HTML-WASM..."
@@ -53,6 +53,7 @@ jobs:
53
# List all exported notebooks
54
echo "Exported notebooks:"
55
ls -la artifacts/marimo/
56
+ working-directory: book/marimo
57
58
# Upload the generated HTML-WASM files as a GitHub Actions artifact
59
# This makes the files available for the deployment job
0 commit comments