We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af3c14f commit 696aceeCopy full SHA for 696acee
publish.py
@@ -41,12 +41,6 @@ def build_release():
41
run(sys.executable, '-m', 'build')
42
43
44
-def sign_release():
45
- for installer in glob.glob('dist/*'):
46
- run(os.environ['PENV'] + '/gpg-as-kovid', '--armor', '--detach-sig',
47
- installer)
48
-
49
50
def tag_release():
51
run('git tag -s "v{0}" -m "version-{0}"'.format(VERSION))
52
run('git push origin "v{0}"'.format(VERSION))
@@ -77,7 +71,6 @@ def main():
77
71
if myinput('Publish version {} [y/n]? '.format(red(VERSION))) != 'y':
78
72
raise SystemExit(1)
79
73
build_release()
80
- sign_release()
81
74
if myinput(red('Upload') + ' release [y/n]? ') != 'y':
82
75
83
76
tag_release()
0 commit comments