File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 22
22
python-version : " 3.11"
23
23
24
24
- name : Install package
25
- run : pip install -e .
25
+ run : pip install .
26
26
27
27
- name : Install dependencies
28
28
run : pip install -r requirements.docs.txt
36
36
pip install -r requirements.txt
37
37
jupyter lite build --contents contents --output-dir ../dist/jupyterlite
38
38
39
+ - name : Build marimo
40
+ run : |
41
+ cd marimo
42
+ pip install marimo
43
+ ./export-notebooks.sh ../dist/marimo
44
+
39
45
- name : Upload artifact
40
46
uses : actions/upload-pages-artifact@v3
41
47
with :
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- files=(" getting-started.py" , " pmtiles-vector.py" )
2
+ output_folder=${1:- dist}
3
+ files=(" getting-started.py" " pmtiles-vector.py" )
3
4
4
5
for file in " ${files[@]} " ; do
5
6
without_extension=" ${file% .* } "
6
- marimo export html-wasm " $file " -o dist /" $without_extension " .html --mode edit
7
+ marimo export html-wasm " $file " -o $output_folder /" $without_extension " .html --mode edit
7
8
done
8
9
You can’t perform that action at this time.
0 commit comments