(fix): outdated tag recognition
All checks were successful
/ build-web (push) Successful in 1m12s
/ build-desktop (push) Successful in 11m50s
/ build-mobile (push) Successful in 16m13s
/ release (push) Successful in 26s

This commit is contained in:
Alois 2026-05-25 00:05:48 +02:00
commit 15138a30da

View file

@ -168,7 +168,7 @@ jobs:
test -d releases
find releases -type f | grep -q .
LATEST_PROD_TAG="$(git tag --list '*-prod' --sort=-v:refname | head -n 1 || true)"
LATEST_PROD_TAG="$(git tag --sort=-v:refname | head -n 1 || true)"
if [ -n "$LATEST_PROD_TAG" ]; then
RAW_LOG="$(git log "$LATEST_PROD_TAG"..HEAD --pretty=format:'- %s')"