From a7db92b44e502d643c4a98280548c120342823ea Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Thu, 11 Mar 2021 10:04:22 +0100 Subject: [PATCH] Use ".RELEASE" suffix for releases on 5.2.x branch This commit ensures that the release scripts generate a ".RELEASE" suffixed release version, since the 5.2.x branch is still using this naming scheme. See https://github.com/spring-io/concourse-java-scripts#get_next_release See gh-26659 --- ci/scripts/stage-version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/stage-version.sh b/ci/scripts/stage-version.sh index 0b285de014..cb7c97f7fa 100755 --- a/ci/scripts/stage-version.sh +++ b/ci/scripts/stage-version.sh @@ -20,7 +20,7 @@ elif [[ $RELEASE_TYPE = "RC" ]]; then stageVersion=$( get_next_rc_release $snapshotVersion) nextVersion=$snapshotVersion elif [[ $RELEASE_TYPE = "RELEASE" ]]; then - stageVersion=$( get_next_release $snapshotVersion) + stageVersion=$( get_next_release $snapshotVersion "RELEASE") nextVersion=$( bump_version_number $snapshotVersion) else echo "Unknown release type $RELEASE_TYPE" >&2; exit 1;