Add script to tag new release (#13)

This commit is contained in:
Nicolas Vigier 2024-01-12 11:13:05 +01:00
parent e4bb97903d
commit 899ea23170
No known key found for this signature in database
GPG Key ID: 4060847C8F4D2883

6
git-tag_release.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# Make a signed git tag for the current commit, for a new release
set -e
VERSION=$(cat share/torbrowser-launcher/version)
git tag -s --message="torbrowser-launcher version $VERSION" v$VERSION
echo "Created git tag v$VERSION"