ci: reverted the tag check
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
D. Moonfire 2023-07-23 20:19:33 -05:00
parent 47493d5aa8
commit 900f68a0af

View file

@ -105,7 +105,7 @@ release-tag: release-setup
# Check the version and see if we've tagged it already.
tag="$pkg-$(dotnet gitversion /output json | jq -r .SemVer)"
if ! git tag | grep $tag > /dev/null
if git tag | grep $tag > /dev/null
then
echo "already tagged $tag"
else