Skip to content

Commit b2358bd

Browse files
committed
Remove PGP signing
1 parent 96095e8 commit b2358bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ release:
3030
if [[ -f Changes.md ]]; then cat $$TAG_MSG <(echo) Changes.md | sponge Changes.md; git add Changes.md; fi; \
3131
if [[ -f Changes.rst ]]; then cat <(pandoc --from markdown --to rst $$TAG_MSG) <(echo) Changes.rst | sponge Changes.rst; git add Changes.rst; fi; \
3232
git commit -m ${TAG}; \
33-
git tag --sign --annotate --file $$TAG_MSG ${TAG}
33+
git tag --annotate --file $$TAG_MSG ${TAG}
3434
git push --follow-tags
3535
$(MAKE) install
3636
gh release create ${TAG} dist/*.whl --notes="$$(git tag --list ${TAG} -n99 | perl -pe 's/^\S+\s*// if $$. == 1' | sed 's/^\s\s\s\s//')"
@@ -39,7 +39,7 @@ release:
3939

4040
release-pypi:
4141
python -m build
42-
twine upload dist/*.tar.gz dist/*.whl --sign --verbose
42+
twine upload dist/*.tar.gz dist/*.whl --verbose
4343

4444
release-docs:
4545
$(MAKE) docs

0 commit comments

Comments
 (0)