From c596f46389c2ea88dbf5699fc41a5d7107827d55 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 11 May 2025 14:21:01 +0200 Subject: [PATCH] fix(scripts): update nightly version suffix format - Changes nightly version suffix to use `.dev` format for consistency - Replaces `+nightly` with `.dev` followed by timestamp --- .gitea/scripts/set_poetry_version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/scripts/set_poetry_version.sh b/.gitea/scripts/set_poetry_version.sh index adf3dfa..272e938 100755 --- a/.gitea/scripts/set_poetry_version.sh +++ b/.gitea/scripts/set_poetry_version.sh @@ -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}"