Skip to content

Commit 2c96518

Browse files
committed
build: tags should be signed
-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.
1 parent 8d1857f commit 2c96518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ check_kits: ## Check that dist/* are well-formed.
223223
@echo $$(ls -1 dist | wc -l) distribution kits
224224

225225
tag: ## Make a git tag with the version number.
226-
git tag -a -m "Version $$(python setup.py --version)" $$(python setup.py --version)
226+
git tag -s -m "Version $$(python setup.py --version)" $$(python setup.py --version)
227227
git push --follow-tags
228228

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

0 commit comments

Comments
 (0)