Browse Source
🐛 Fix deploy docs previews script to handle mkdocs.yml files (#11984)
pull/11985/head
Sebastián Ramírez
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
scripts/deploy_docs_status.py
|
|
@ -63,7 +63,8 @@ def main(): |
|
|
|
lang_links: dict[str, list[str]] = {} |
|
|
|
for f in docs_files: |
|
|
|
match = re.match(r"docs/([^/]+)/docs/(.*)", f.filename) |
|
|
|
assert match |
|
|
|
if not match: |
|
|
|
continue |
|
|
|
lang = match.group(1) |
|
|
|
path = match.group(2) |
|
|
|
if path.endswith("index.md"): |
|
|
|