Don't push when bumping version
This commit is contained in:
parent
b9b7928e7d
commit
e5a7921873
1 changed files with 0 additions and 6 deletions
|
@ -32,7 +32,6 @@ def main():
|
||||||
update_version_h(versions)
|
update_version_h(versions)
|
||||||
update_info_plist(version)
|
update_info_plist(version)
|
||||||
tag_version(version)
|
tag_version(version)
|
||||||
git_push()
|
|
||||||
|
|
||||||
|
|
||||||
def increase_version(versions, index):
|
def increase_version(versions, index):
|
||||||
|
@ -118,10 +117,5 @@ def tag_version(version):
|
||||||
execute(['git', 'tag', 'v{0}'.format(version)])
|
execute(['git', 'tag', 'v{0}'.format(version)])
|
||||||
|
|
||||||
|
|
||||||
def git_push():
|
|
||||||
execute(['git', 'push'])
|
|
||||||
execute(['git', 'push', '--tags'])
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(main())
|
sys.exit(main())
|
||||||
|
|
Loading…
Reference in a new issue