From 656f73f0c52ffcf3232c12bf44251abd88759c53 Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Tue, 19 Nov 2019 12:19:55 -0800 Subject: [PATCH] Parse version from build.json for release notes generation Fixes gh-18908 --- ci/scripts/promote.sh | 1 + ci/scripts/sync-to-maven-central.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/scripts/promote.sh b/ci/scripts/promote.sh index ce4f08b8bc..818d9b6bcd 100755 --- a/ci/scripts/promote.sh +++ b/ci/scripts/promote.sh @@ -2,6 +2,7 @@ source $(dirname $0)/common.sh +version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json java -jar /spring-boot-release-scripts.jar promote $RELEASE_TYPE $BUILD_INFO_LOCATION > /dev/null || { exit 1; } diff --git a/ci/scripts/sync-to-maven-central.sh b/ci/scripts/sync-to-maven-central.sh index 1c324ac508..d1a0069a22 100755 --- a/ci/scripts/sync-to-maven-central.sh +++ b/ci/scripts/sync-to-maven-central.sh @@ -1,7 +1,7 @@ #!/bin/bash export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json - +version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) java -jar /spring-boot-release-scripts.jar syncToCentral "RELEASE" $BUILD_INFO_LOCATION > /dev/null || { exit 1; } echo "Sync complete"