Add release versioning and Docker release workflow

This commit is contained in:
Sergey Filkin
2026-04-17 23:44:16 +03:00
parent 0fe596383e
commit 94a3e102b4
8 changed files with 129 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
from pathlib import Path
VERSION_FILE = Path(__file__).resolve().parent.parent / "VERSION"
def read_version() -> str:
return VERSION_FILE.read_text(encoding="utf-8").strip()
__version__ = read_version()