Restore version tag which shouldn't start with a v

This commit is contained in:
Dan Yeaw
2021-01-23 14:23:40 -05:00
committed by GitHub
parent c74a39e4d9
commit 5d66949013

View File

@ -10,7 +10,7 @@ fi
VERSION="$(poetry version --no-ansi | cut -d' ' -f2)"
echo "VERSION is $VERSION"
if [[ "$GITHUB_REF" =~ refs\/tags\/.* && "$TAG" == v"${VERSION}" ]]
if [[ "$GITHUB_REF" =~ refs\/tags\/.* && "$TAG" == "${VERSION}" ]]
then
REV=""
RELEASE="true"