We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9efdd commit e12ebceCopy full SHA for e12ebce
1 file changed
.github/workflows/sync_example.py
@@ -3,7 +3,8 @@
3
4
# Go up 2 levels from .github/workflows/ to get repo root
5
root = pathlib.Path(__file__).resolve().parent.parent.parent
6
-docs_nb = root / "docs" / "examples" / "jupyter_notebooks"
+# Destination inside mkdocs docs dir for examples
7
+docs_nb = root / "docs" / "examples"
8
(docs_nb / "grid_models").mkdir(parents=True, exist_ok=True)
9
10
# notebooks
@@ -21,4 +22,4 @@
21
22
db_src = root / "examples" / "WECGrid.db"
23
if db_src.exists():
24
(root / "docs" / "examples").mkdir(parents=True, exist_ok=True)
- shutil.copy2(db_src, root / "docs" / "examples" / "WECGrid.db")
25
+ shutil.copy2(db_src, root / "docs" / "examples" / "WECGrid.db")
0 commit comments