We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2e9032 commit 2014bf3Copy full SHA for 2014bf3
create_tag.sh
@@ -5,8 +5,8 @@ regex="^v([0-9]+)\.([0-9]+)\.([0-9]+)(-(alpha|beta|rc)\.([0-9]+))?$"
5
6
if [[ $version =~ $regex ]]; then
7
echo "Creating tag with: " $1
8
- git tag -a -s -u GPG_KEY_ID -m 'rabbitmq-amqp-dotnet-client $1' '$1' && git push && git push --tags
9
- echo "Tag created: " $1
+ git tag -a -s -u $2 -m "rabbitmq-amqp-dotnet-client $1" $1 && git push && git push --tags
+ echo "Tag created: " $1
10
else
11
echo "Invalid version" $1
12
fi
0 commit comments