Skip to content

Commit 123947a

Browse files
committed
Do not use gpg
1 parent 3a33009 commit 123947a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ release:
2828
if [[ -f Changes.md ]]; then cat $$TAG_MSG <(echo) Changes.md | sponge Changes.md; git add Changes.md; fi; \
2929
if [[ -f Changes.rst ]]; then cat <(pandoc --from markdown --to rst $$TAG_MSG) <(echo) Changes.rst | sponge Changes.rst; git add Changes.rst; fi; \
3030
git commit -m ${TAG}; \
31-
git tag --sign --annotate --file $$TAG_MSG ${TAG}
31+
git tag --annotate --file $$TAG_MSG ${TAG}
3232
git push --follow-tags
3333
$(MAKE) install
3434
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//')"
3535
$(MAKE) release-pypi
3636

3737
release-pypi:
3838
python -m build
39-
twine upload dist/*.tar.gz dist/*.whl --sign --verbose
39+
twine upload dist/*.tar.gz dist/*.whl --verbose
4040

4141
.PHONY: release

0 commit comments

Comments
 (0)