This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/cloudstack-terraform-provider.git
The following commit(s) were added to refs/heads/main by this push:
new 2d1cf7a performrelease: fix version tagging convention
2d1cf7a is described below
commit 2d1cf7ae31eb35a80086abc7dd3f8f72ab3cafb1
Author: Rohit Yadav <[email protected]>
AuthorDate: Tue Apr 9 12:43:21 2024 +0530
performrelease: fix version tagging convention
Signed-off-by: Rohit Yadav <[email protected]>
---
performrelease.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/performrelease.sh b/performrelease.sh
index dfc6dc5..f21a679 100755
--- a/performrelease.sh
+++ b/performrelease.sh
@@ -115,9 +115,9 @@ if [ "$tag" == "yes" ]; then
echo 'tag'
cd $sourcedir
if [ "$certid" == "X" ]; then
- git tag -s $version -m "Tagging release $version on branch $branch."
+ git tag -s v$version -m "Tagging release $version on branch $branch."
else
- git tag -u $certid -s $version -m "Tagging release $version on branch
$branch."
+ git tag -u $certid -s v$version -m "Tagging release $version on branch
$branch."
fi
fi