fix(scripts): update nightly version suffix format
All checks were successful
Auto Changelog & Release / detect-version-change (push) Successful in 5s
Auto Changelog & Release / release (push) Has been skipped
Auto Changelog & Release / changelog-only (push) Successful in 7s
Build and Publish nightly package / build-and-publish (push) Successful in 16s

- Changes nightly version suffix to use `.dev` format for consistency
- Replaces `+nightly` with `.dev` followed by timestamp
This commit is contained in:
2025-05-11 14:21:01 +02:00
parent 71f397dd73
commit c596f46389

View File

@@ -5,7 +5,7 @@ NIGHTLY_SUFFIX=""
if [[ "$1" == "nightly" ]]; then
# Beispiel: 20240511.1358 → 11. Mai, 13:58 Uhr
NIGHTLY_SUFFIX="+nightly.$(date +%Y%m%d.%H%M)"
NIGHTLY_SUFFIX=".dev$(date +%Y%m%d%H%M)"
fi
FULL_VERSION="${BASE_VERSION}${NIGHTLY_SUFFIX}"