Skip to content

Commit

Permalink
fix: add autogenerated messages to tags
Browse files Browse the repository at this point in the history
  • Loading branch information
darccio committed Dec 19, 2024
1 parent 6a0a0c9 commit d43163f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tools/v2_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ if [ $phase -eq 3 ]; then
cd -

cd ./contrib/database/sql && pwd
git tag contrib/database/sql/$version
git tag -m "contrib/database/sql/$version release" contrib/database/sql/$version
git push --tags
cd -

cd ./contrib/google.golang.org/grpc && pwd
git tag contrib/google.golang.org/grpc/$version
git tag -m "contrib/google.golang.org/grpc/$version release" contrib/google.golang.org/grpc/$version
git push --tags
cd -

Expand All @@ -66,7 +66,8 @@ if [ $phase -eq 4 ]; then
continue
fi
cd $contrib && pwd
git tag $(echo $contrib | sed 's#\.\/##')/$version
tag=$(echo $contrib | sed 's#\.\/##')/$version
git tag -m "$tag release" $tag
git push --tags
cd -
done
Expand Down

0 comments on commit d43163f

Please sign in to comment.