Skip to content

Commit 579722b

Browse files
committed
Fix braces in publish release notes script
1 parent 96f5c82 commit 579722b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/scripts/publish-release-notes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ curl \
2121
-s \
2222
-u ${GITHUB_USERNAME}:${GITHUB_PASSWORD} \
2323
-H "Content-type:application/json" \
24-
-d "{\"tag_name\":\"v{$milestone}\",\"name\":\"v{$milestone}\",\"body\": \"${body}\"}" \
24+
-d "{\"tag_name\":\"v${milestone}\",\"name\":\"v${milestone}\",\"body\": \"${body}\"}" \
2525
-f \
2626
-X \
2727
POST "https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/releases" > /dev/null || { echo "Failed to publish" >&2; exit 1; }

0 commit comments

Comments
 (0)