Mark WilkensXL build versions
Some checks failed
Container Image / build-and-push (push) Has been cancelled

This commit is contained in:
2026-07-15 22:06:24 +02:00
parent caffdaa38c
commit aa1293323e
8 changed files with 107 additions and 7 deletions

View File

@@ -5,6 +5,14 @@ import os
from src.runtime_paths import get_app_root, get_default_data_dir
APP_VERSION = "1.0.1"
UPSTREAM_VERSION = APP_VERSION
BUILD_FLAVOR = os.getenv("ODYSSEUS_BUILD_FLAVOR", "wilkensxl")
BUILD_REVISION = os.getenv("ODYSSEUS_BUILD_REVISION", "2")
BUILD_VERSION = os.getenv(
"ODYSSEUS_BUILD_VERSION",
f"{APP_VERSION}-{BUILD_FLAVOR}.{BUILD_REVISION}" if BUILD_FLAVOR else APP_VERSION,
)
FULL_VERSION = BUILD_VERSION
# Base paths
BASE_DIR = os.path.join(get_app_root(), "")