Skip to content

Commit 98b684c

Browse files
committed
Fix CI schema check to not reference deleted docs/schema.json
1 parent d7454e2 commit 98b684c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Check JSON Schema is up to date
5050
run: |
5151
uv run python scripts/generate_schema.py
52-
if ! git diff --exit-code sidemantic-schema.json docs/schema.json; then
52+
if ! git diff --exit-code sidemantic-schema.json; then
5353
echo "JSON Schema is out of date. Run 'uv run python scripts/generate_schema.py' and commit the changes."
5454
exit 1
5555
fi

0 commit comments

Comments
 (0)