Skip to content

Commit

Permalink
Fix braces in publish release notes script
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhave committed Sep 25, 2018
1 parent 96f5c82 commit 579722b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/publish-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

0 comments on commit 579722b

Please sign in to comment.