Skip to content

Commit

Permalink
chore: fix check tag step in release action
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Oct 3, 2023
1 parent 68f860b commit 2ebef2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/actions_utils/check_tag_not_remote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi
git fetch --tags --force

# If the tag name is already found remotely, exist with status 1
if git ls-remote --tags origin | grep -q "${TAG_NAME}"; then
if git ls-remote --tags origin | grep -q "${TAG_NAME}$"; then
echo "Tag ${TAG_NAME} already exists remotely."
exit 1
fi

0 comments on commit 2ebef2d

Please sign in to comment.