Skip to content

Commit 589d4f9

Browse files
committed
Fix concourse scripts to get next release version
Fixes gh-12239
1 parent ec36d00 commit 589d4f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/scripts/stage.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=$( strip_snapshot_suffix $snapshotVersion)
23+
stageVersion=$( get_next_release $snapshotVersion)
2424
nextVersion=$( bump_version_number $snapshotVersion)
2525
else
2626
echo "Unknown release type $RELEASE_TYPE" >&2; exit 1;

0 commit comments

Comments
 (0)