Skip to content

Commit ca45852

Browse files
committed
build: ensure tags are signed even if commits are not
1 parent 3e09c0d commit ca45852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ kit_upload: ## Upload the built distributions to PyPI.
3232
python -m twine upload --verbose dist/*
3333

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

3838
ghrelease: ## Make a GitHub release for the latest version.

0 commit comments

Comments
 (0)