Skip to content

Commit d7454e2

Browse files
committed
Remove docs CI and fix schema script
Docs now live in sidequery-web.
1 parent 265d529 commit d7454e2

2 files changed

Lines changed: 0 additions & 59 deletions

File tree

.github/workflows/docs.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

scripts/generate_schema.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,7 @@ def generate_schema() -> dict:
5858
schema = generate_schema()
5959
root = Path(__file__).parent.parent
6060

61-
# Write to root (for local development)
6261
output_path = root / "sidemantic-schema.json"
6362
with open(output_path, "w") as f:
6463
json.dump(schema, f, indent=2, sort_keys=True)
6564
print(f"Generated {output_path}")
66-
67-
# Also copy to docs for publishing to sidemantic.com/schema.json
68-
docs_path = root / "docs" / "schema.json"
69-
with open(docs_path, "w") as f:
70-
json.dump(schema, f, indent=2, sort_keys=True)
71-
print(f"Generated {docs_path}")

0 commit comments

Comments
 (0)