Use signed tags

This commit is contained in:
su-ex 2022-04-16 21:22:52 +02:00
parent ad2fc85f24
commit 3d67db61b6
No known key found for this signature in database
GPG Key ID: D743C50C8B61984C
2 changed files with 2 additions and 2 deletions

View File

@ -24,6 +24,6 @@ get_versions_string
# Add everything
git add -A
git commit --allow-empty -m "New release v$versions_string"
git tag -a "v$versions_string" -m "New release v$versions_string"
git tag -s "v$versions_string" -m "New release v$versions_string"
popd > /dev/null

View File

@ -24,6 +24,6 @@ get_versions_string
# Add everything
git add -A
git commit --allow-empty -m "New test release v$versions_string"
git tag -a "v$versions_string" -m "New test release v$versions_string"
git tag -s "v$versions_string" -m "New test release v$versions_string"
popd > /dev/null