From ec616d87a4bb610595d575a7c742a87fdec43c05 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Wed, 21 Feb 2024 19:54:58 -0800 Subject: [PATCH] Do not use gpg --- common.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mk b/common.mk index ddbaed7..7424de1 100644 --- a/common.mk +++ b/common.mk @@ -28,7 +28,7 @@ release: if [[ -f Changes.md ]]; then cat $$TAG_MSG <(echo) Changes.md | sponge Changes.md; git add Changes.md; fi; \ if [[ -f Changes.rst ]]; then cat <(pandoc --from markdown --to rst $$TAG_MSG) <(echo) Changes.rst | sponge Changes.rst; git add Changes.rst; fi; \ git commit -m ${TAG}; \ - git tag --sign --annotate --file $$TAG_MSG ${TAG} + git tag --annotate --file $$TAG_MSG ${TAG} git push --follow-tags $(MAKE) install 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//')" @@ -36,6 +36,6 @@ release: release-pypi: python -m build - twine upload dist/*.tar.gz dist/*.whl --sign --verbose + twine upload dist/*.tar.gz dist/*.whl --verbose .PHONY: release