Skip to content

Commit

Permalink
build: tags should be signed
Browse files Browse the repository at this point in the history
-a was signing them before because I was signing all commits.  Now that
I am not, we want -s to ensure the tag is signed.
  • Loading branch information
nedbat committed Jan 26, 2024
1 parent 8d1857f commit 2c96518
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 @@ -223,7 +223,7 @@ check_kits: ## Check that dist/* are well-formed.
@echo $$(ls -1 dist | wc -l) distribution kits

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 --follow-tags

bump_version: ## Edit sources to bump the version after a release.
Expand Down

0 comments on commit 2c96518

Please sign in to comment.