Skip to content

Commit a7db92b

Browse files
committed
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
1 parent 63912f8 commit a7db92b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/scripts/stage-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ elif [[ $RELEASE_TYPE = "RC" ]]; then
2020
stageVersion=$( get_next_rc_release $snapshotVersion)
2121
nextVersion=$snapshotVersion
2222
elif [[ $RELEASE_TYPE = "RELEASE" ]]; then
23-
stageVersion=$( get_next_release $snapshotVersion)
23+
stageVersion=$( get_next_release $snapshotVersion "RELEASE")
2424
nextVersion=$( bump_version_number $snapshotVersion)
2525
else
2626
echo "Unknown release type $RELEASE_TYPE" >&2; exit 1;

0 commit comments

Comments
 (0)