Skip to content

Commit

Permalink
[devscripts/create-github-release] Make full published releases by de…
Browse files Browse the repository at this point in the history
…fault
  • Loading branch information
dstftw committed Jun 5, 2016
1 parent 244fe97 commit db59b37
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions devscripts/create-github-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,9 @@ def main():

version, build_path = args

releaser = GitHubReleaser(debuglevel=0)
releaser = GitHubReleaser()

new_release = releaser.create_release(
version, name='youtube-dl %s' % version, draft=True, prerelease=True)
new_release = releaser.create_release(version, name='youtube-dl %s' % version)
release_id = new_release['id']

for asset in os.listdir(build_path):
Expand Down

0 comments on commit db59b37

Please sign in to comment.