Skip to content

Commit 8440db1

Browse files
committed
Stop setting tags on example modules
On-behalf-of: SAP <[email protected]> Signed-off-by: Marvin Beckers <[email protected]>
1 parent 79d0407 commit 8440db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hack/release-commit.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ echo "Creating release tags ..."
5252
git tag -am "${TAG}" "${TAG}" ${GIT_TAG_OPTIONS}
5353
echo "Created tag ${TAG}."
5454

55-
# create provider and example tags
56-
find "providers" "examples" -name go.mod | while read -r GOMOD; do
55+
# create provider tags
56+
find "providers" -name go.mod | while read -r GOMOD; do
5757
module=$(dirname "${GOMOD}")
5858
git tag -am "${module}/${TAG}" "${module}/${TAG}" ${GIT_TAG_OPTIONS}
5959
echo "Created tag ${module}/${TAG}."

0 commit comments

Comments
 (0)