aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/ci/build_status_command.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/build_status_command.sh')
-rwxr-xr-xscripts/ci/build_status_command.sh11
1 files changed, 3 insertions, 8 deletions
diff --git a/scripts/ci/build_status_command.sh b/scripts/ci/build_status_command.sh
index e04b208e87..2bbbbffcd5 100755
--- a/scripts/ci/build_status_command.sh
+++ b/scripts/ci/build_status_command.sh
@@ -32,13 +32,8 @@ fi
if [ -n "${BUILD_LOG-}" ]; then
echo "RELEASE_BUILD_LOG ${BUILD_LOG}"
fi
-echo "RELEASE_COMMIT_MSG $(git_commit_msg | tr '\n' '\f')"
-release_name=$(get_release_name)
-rc=$(get_release_candidate)
+release_name=$(get_full_release_name)
if [ -n "${release_name}" ]; then
- if [ -n "${rc}" ]; then
- echo "RELEASE_NAME ${release_name}rc${rc}"
- else
- echo "RELEASE_NAME ${release_name}"
- fi
+ echo "RELEASE_NAME ${release_name}"
+ echo "RELEASE_NOTES $(get_full_release_notes | tr '\n' '\f')"
fi