feat(release): publish verified source tags
Some checks failed
Dependency Audit / dependency-audit (push) Failing after 14s
Security Audit / security-audit (push) Failing after 12s

This commit is contained in:
2026-07-22 01:17:07 +02:00
parent eca75cbc93
commit 30f9ed152a
12 changed files with 1735 additions and 40 deletions

View File

@@ -18,6 +18,7 @@ __all__ = [
"prepare_repositories",
"push_repositories",
"sync_repositories",
"tag_repositories",
]
@@ -64,4 +65,8 @@ def _load_lazy_export(name: str):
from .repository_sync import sync_repositories
return sync_repositories
if name == "tag_repositories":
from .repository_tag import tag_repositories
return tag_repositories
raise AttributeError(name)