fix(TASK-1e96a72b): keep legacy curator document outside release payload
Vadim Vasishev committed 2026-09-08 16:06:02 +0000

Analyzing diff...

scripts/build_native.py+1 −0
index 2aefb8d..5e97dcf 100644
--- a/scripts/build_native.py
+++ b/scripts/build_native.py
@@ -15,6 +15,7 @@ else:
  for name in ['plans','apps']:shutil.copytree(root/name,out/name)
 files,errors=validate(out)
 if errors:raise SystemExit('\n'.join(errors))
+files=[row for row in files if not row['path'].endswith('.md')]
 if os.environ.get('CI_COMMIT_REF_NAME') and os.environ['CI_COMMIT_REF_NAME']!='master':raise SystemExit('Only the existing default branch may publish')
 commit=os.environ.get('CI_COMMIT_SHA') or subprocess.check_output(['git','rev-parse','HEAD'],text=True).strip()
 with tarfile.open(root/'static-release.tar','w',format=tarfile.PAX_FORMAT) as t: