Push stable / beta commits to launchpad on release.

This commit is contained in:
John Preston 2018-11-06 12:37:35 +04:00
parent dcb748c544
commit 2061248224

View File

@ -194,6 +194,14 @@ if r.status_code == 404:
}))
checkResponseCode(r, 201)
tagname = 'v' + version
call("git fetch origin".split());
if stable == 1:
call("git push launchpad {}:master".format(tagname).split())
else:
call("git push launchpad {}:beta".format(tagname).split())
call("git push --tags launchpad".split())
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/tags/v' + version)
checkResponseCode(r, 200);