We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e98f7a commit fda4c7bCopy full SHA for fda4c7b
.github/workflows/registry-releaser.yml
@@ -60,7 +60,7 @@ jobs:
60
TAG_VERSION=$(echo "${{ github.ref_name }}" | sed 's/^v//')
61
else
62
LATEST_TAG=$(git tag --sort=-version:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+(-.*)?$' | head -n 1)
63
- [ -z "$LATEST_TAG" ] && { echo "No release tag found"; exit 1; }
+ [ -z "$LATEST_TAG" ] && { echo "No release tag found. Cannot determine version."; exit 1; }
64
TAG_VERSION=$(echo "$LATEST_TAG" | sed 's/^v//')
65
echo "Using latest tag: $LATEST_TAG"
66
fi
0 commit comments