fix: correct docs.json path in analysis workflow

This commit is contained in:
Gu
2025-08-23 12:03:16 +08:00
parent 69e330ad2e
commit e620d2522b

View File

@@ -230,8 +230,8 @@ jobs:
docs_json_changed = f.read().strip() == "true"
if docs_json_changed:
# Get docs.json size
docs_json_size = os.path.getsize("../../docs.json")
# Get docs.json size (from repo root)
docs_json_size = os.path.getsize("docs.json")
files_to_sync.append({
"path": "docs.json",
"size": docs_json_size,