Skip to content

Commit

Permalink
Add release notes collection script
Browse files Browse the repository at this point in the history
  • Loading branch information
caithagoras0 committed May 7, 2020
1 parent 9057aea commit b70fcf3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/release/release-notes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

if [[ "$#" -ne 2 ]]; then
echo "Usage: $0 <github_user> <github_access_token>"
exit 1
fi

curl -L -o /tmp/presto_release "https://oss.sonatype.org/service/local/artifact/maven/redirect?g=com.facebook.presto&a=presto-release-tools&v=RELEASE&r=releases&c=executable&e=jar"
chmod 755 /tmp/presto_release
/tmp/presto_release release-notes --github-user $1 --github-access-token $2

0 comments on commit b70fcf3

Please sign in to comment.