From 579722bfbdfd4d499ce17b8dd7a164412e61658c Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Tue, 25 Sep 2018 12:30:27 -0400 Subject: [PATCH] Fix braces in publish release notes script --- ci/scripts/publish-release-notes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/publish-release-notes.sh b/ci/scripts/publish-release-notes.sh index c5b7144962..a178ad4e69 100755 --- a/ci/scripts/publish-release-notes.sh +++ b/ci/scripts/publish-release-notes.sh @@ -21,7 +21,7 @@ curl \ -s \ -u ${GITHUB_USERNAME}:${GITHUB_PASSWORD} \ -H "Content-type:application/json" \ - -d "{\"tag_name\":\"v{$milestone}\",\"name\":\"v{$milestone}\",\"body\": \"${body}\"}" \ + -d "{\"tag_name\":\"v${milestone}\",\"name\":\"v${milestone}\",\"body\": \"${body}\"}" \ -f \ -X \ POST "https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/releases" > /dev/null || { echo "Failed to publish" >&2; exit 1; }