From 57029fa0af51737a961fb96fb44c9b03360ea703 Mon Sep 17 00:00:00 2001 From: Zack Date: Sat, 21 Feb 2015 23:34:16 -0500 Subject: [PATCH] You know it is getting late when you forgot to switch it back to not creating drafts. But hey, it worked \O/ --- deploy_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_release.py b/deploy_release.py index 375f36a2..7d1b7785 100644 --- a/deploy_release.py +++ b/deploy_release.py @@ -16,7 +16,7 @@ with open('/home/bamboo/scripts/token.py') as f: body = 'This is the newest release for TShock. Please see the release thread for more information @ http://tshock.co/xf' -data = {'tag_name':tag_name, 'target_commitish':branch, 'name':name, 'body':body, 'draft':True, 'prerelease':False} +data = {'tag_name':tag_name, 'target_commitish':branch, 'name':name, 'body':body, 'draft':False, 'prerelease':False} create_headers = {'Content-Type': 'application/json', 'Authorization': 'token ' + token} json_data = json.dumps(data)