feat: Git-Tag-basierte Versionierung (Alpha/Beta/Release statt Commit-Hash)

This commit is contained in:
2026-02-22 14:12:32 +01:00
parent e9e2e67991
commit fd79065519
7 changed files with 52 additions and 16 deletions

View File

@@ -38,9 +38,11 @@ echo "✓ Code updated to: $(git log --oneline -1)"
export GIT_COMMIT=$(git rev-parse HEAD)
export GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
export GIT_COMMIT_DATE=$(git log -1 --format=%cI)
export GIT_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "unknown")
echo ""
echo "Building with:"
echo " GIT_TAG = $GIT_TAG"
echo " GIT_COMMIT = $GIT_COMMIT"
echo " GIT_BRANCH = $GIT_BRANCH"
echo " GIT_COMMIT_DATE = $GIT_COMMIT_DATE"