Merge branch '2.2.x' into 2.3.x

Closes gh-24420
This commit is contained in:
Madhura Bhave
2020-12-09 12:24:18 -08:00
4 changed files with 38 additions and 3 deletions

View File

@@ -11,7 +11,5 @@ java -jar /spring-boot-release-scripts.jar distribute $RELEASE_TYPE $BUILD_INFO_
java -jar /spring-boot-release-scripts.jar publishGradlePlugin $RELEASE_TYPE $BUILD_INFO_LOCATION || { exit 1; }
java -jar /spring-boot-release-scripts.jar publishToSdkman $RELEASE_TYPE $version $BRANCH || {exit 1;}
echo "Promotion complete"
echo $version > version/version

View File

@@ -0,0 +1,9 @@
#!/bin/bash
source $(dirname $0)/common.sh
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' )
java -jar /spring-boot-release-scripts.jar publishToSdkman $RELEASE_TYPE $version $BRANCH || {exit 1;}
echo "Push to SDKMAN complete"