Skip to content

Commit d834632

Browse files
committed
fix: correct docs.json path in analysis workflow
1 parent c083fad commit d834632

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/sync_docs_analyze.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ jobs:
230230
docs_json_changed = f.read().strip() == "true"
231231
232232
if docs_json_changed:
233-
# Get docs.json size
234-
docs_json_size = os.path.getsize("../../docs.json")
233+
# Get docs.json size (from repo root)
234+
docs_json_size = os.path.getsize("docs.json")
235235
files_to_sync.append({
236236
"path": "docs.json",
237237
"size": docs_json_size,

0 commit comments

Comments
 (0)