Attempt to push cli to cli repo

This commit is contained in:
Travis Reeder
2017-07-27 10:18:02 -07:00
parent ecc0e1965e
commit 4e8a5399d9

View File

@@ -39,7 +39,7 @@ git push
git push origin $tag
# For GitHub
url='https://api.github.com/repos/fnproject/fn/releases'
url='https://api.github.com/repos/fnproject/cli/releases'
output=$(curl -s -u $GH_DEPLOY_USER:$GH_DEPLOY_KEY -d "{\"tag_name\": \"$version\", \"name\": \"$version\"}" $url)
upload_url=$(echo "$output" | python -c 'import json,sys;obj=json.load(sys.stdin);print obj["upload_url"]' | sed -E "s/\{.*//")
html_url=$(echo "$output" | python -c 'import json,sys;obj=json.load(sys.stdin);print obj["html_url"]')