Sign tags using my personal key

This commit is contained in:
Kovid Goyal 2015-01-25 14:18:59 +05:30
parent c70a3f9451
commit dcc80ea16a

View File

@ -228,5 +228,5 @@ class TagRelease(Command):
def run(self, opts): def run(self, opts):
self.info('Tagging release') self.info('Tagging release')
subprocess.check_call('git tag -a v{0} -m "version-{0}"'.format(__version__).split()) subprocess.check_call('git tag -s v{0} -m "version-{0}"'.format(__version__).split())
subprocess.check_call('git push origin v{0}'.format(__version__).split()) subprocess.check_call('git push origin v{0}'.format(__version__).split())