2017-09-29 01:57:35 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source $(dirname $0)/common.sh
|
|
|
|
|
2019-10-24 08:54:43 +08:00
|
|
|
export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json
|
2017-09-29 01:57:35 +08:00
|
|
|
|
2019-10-24 08:54:43 +08:00
|
|
|
java -jar /spring-boot-release-scripts.jar promote $RELEASE_TYPE $BUILD_INFO_LOCATION > /dev/null || { exit 1; }
|
2017-09-29 01:57:35 +08:00
|
|
|
|
2019-10-24 08:54:43 +08:00
|
|
|
java -jar /spring-boot-release-scripts.jar distribute $RELEASE_TYPE $BUILD_INFO_LOCATION > /dev/null || { exit 1; }
|
2017-09-29 01:57:35 +08:00
|
|
|
|
2019-10-24 08:54:43 +08:00
|
|
|
java -jar /spring-boot-release-scripts.jar publishGradlePlugin $RELEASE_TYPE $BUILD_INFO_LOCATION > /dev/null || { exit 1; }
|
2017-09-29 01:57:35 +08:00
|
|
|
|
|
|
|
echo "Promotion complete"
|
2018-11-16 03:15:33 +08:00
|
|
|
echo $version > version/version
|