Skip to content

Commit

Permalink
apply full match
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikoTan committed Nov 16, 2023
1 parent 4c3ed89 commit d811ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: check_tag
run: |
git fetch --tags
if [ -z "$(git tag -l | grep -w ${{ steps.check_version.outputs.TAG }})" ]; then
if [ -z "$(git tag -l | grep -w "^${{ steps.check_version.outputs.TAG }}\$")" ]; then
echo "TAG_EXISTS=false" >> $GITHUB_OUTPUT
else
echo "TAG_EXISTS=true" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit d811ea8

Please sign in to comment.