Skip to content

Commit

Permalink
No more gpg
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Nov 1, 2023
1 parent 4085372 commit 75548f2
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,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//')"
Expand All @@ -37,7 +37,7 @@ release:

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

release-docs:
$(MAKE) docs
Expand Down

0 comments on commit 75548f2

Please sign in to comment.