ci: add CCMA release builds

This commit is contained in:
Marcel Peterkau
2026-06-23 20:19:53 +02:00
parent 302170230a
commit 0e3087a780
16 changed files with 842 additions and 24 deletions
+3 -3
View File
@@ -511,9 +511,9 @@ def _office_executable() -> str | None:
if value and value not in windows_roots:
windows_roots.append(value)
for root in windows_roots:
candidate = Path(root) / "LibreOffice" / "program" / "soffice.exe"
if candidate.is_file():
return str(candidate)
candidate = os.path.join(root, "LibreOffice", "program", "soffice.exe")
if os.path.isfile(candidate):
return candidate
return None