Skip to content

Commit e620d25

Browse files
committed
fix: correct docs.json path in analysis workflow
1 parent 69e330a commit e620d25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.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)