Skip to content

Commit

Permalink
Remove gpg signing
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Apr 14, 2024
1 parent 4e5b6ab commit b5237d8
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 @@ -33,7 +33,7 @@ release:
xq --help > docs/cli-doc-xq.txt; git add docs/cli-doc-xq.txt; \
tomlq --help > docs/cli-doc-tomlq.txt; git add docs/cli-doc-tomlq.txt; \
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 @@ -42,7 +42,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 b5237d8

Please sign in to comment.