From ec57251c550e1630f27acaaa85482d22fcd8d81a Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 29 Oct 2020 11:01:32 +0100 Subject: [PATCH] Configure release script to use .RELEASE suffix --- ci/scripts/stage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/stage.sh b/ci/scripts/stage.sh index 2ae8a51f570..5cd2a66556f 100755 --- a/ci/scripts/stage.sh +++ b/ci/scripts/stage.sh @@ -27,7 +27,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;