Skip to content

Commit

Permalink
Do not use gpg
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Feb 22, 2024
1 parent 1987014 commit ec616d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ 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//')"
$(MAKE) release-pypi

release-pypi:
python -m build
twine upload dist/*.tar.gz dist/*.whl --sign --verbose
twine upload dist/*.tar.gz dist/*.whl --verbose

.PHONY: release

0 comments on commit ec616d8

Please sign in to comment.