Skip to content

Commit

Permalink
Remove -s from twine upload, sign the assets ourselves
Browse files Browse the repository at this point in the history
Fix #3703
  • Loading branch information
Kwpolska committed Jul 26, 2023
1 parent 88b8c03 commit e019118
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ read bailout
cleanup

./setup.py sdist bdist_wheel || exit $?
twine upload -s dist/Nikola-$version.tar.gz dist/Nikola-$version*.whl || exit $?
gpg --detach-sign -a dist/Nikola-$version.tar.gz.asc dist/Nikola-$version.tar.gz
gpg --detach-sign -a dist/Nikola-$version*.whl.asc dist/Nikola-$version*.whl
twine upload dist/Nikola-$version.tar.gz dist/Nikola-$version*.whl || exit $?

cleanup

Expand Down

0 comments on commit e019118

Please sign in to comment.