Skip to content

Commit

Permalink
build: ensure tags are signed even if commits are not
Browse files Browse the repository at this point in the history
  • Loading branch information
Ned Batchelder committed Jan 27, 2024
1 parent 2f49435 commit a6b143c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ testpypi: ## Upload the distrubutions to PyPI's testing server.
python -m twine upload --verbose --repository testpypi dist/*

tag: ## Make a git tag with the version number
git tag -a -m "Version $$(python setup.py --version)" $$(python setup.py --version)
git tag -s -m "Version $$(python setup.py --version)" $$(python setup.py --version)
git push --all

gh_release: ## Make a GitHub release
Expand Down

0 comments on commit a6b143c

Please sign in to comment.