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 57d5f55 commit af0514bCopy full SHA for af0514b
tag.sh
@@ -74,11 +74,11 @@ TAG_CURRENT=`git tag | grep '^v' | tail -1`
74
PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; | egrep -v 'tools' | sed 's/^\.\///' | sort)
75
76
# Create tag for root module
77
-git tag -a "${TAG}" -m "Version ${TAG}" ${COMMIT_HASH}
+git tag -a "${TAG}" -s -m "Version ${TAG}" ${COMMIT_HASH}
78
79
# Create tag for submodules
80
for dir in $PACKAGE_DIRS; do
81
- git tag -a "${dir}/${TAG}" -m "Version ${dir}/${TAG}" ${COMMIT_HASH}
+ git tag -a "${dir}/${TAG}" -s -m "Version ${dir}/${TAG}" ${COMMIT_HASH}
82
done
83
84
# Generate commit logs
tag_latest_modules.sh
0 commit comments