We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fae4636 commit ae4a019Copy full SHA for ae4a019
.github/workflows/auto-release.yml
@@ -41,7 +41,7 @@ jobs:
41
- name: Find latest stable v-prefixed tag
42
id: latest_tag
43
run: |
44
- LATEST_TAG=$(git tag -l 'v[0-9]*.[0-9]*.[0-9]*' --sort=-v:refname | grep -vE '-(beta|alpha|rc)' | head -1)
+ LATEST_TAG=$(git tag -l 'v[0-9]*.[0-9]*.[0-9]*' --sort=-v:refname | grep -v -e '-beta' -e '-alpha' -e '-rc' | head -1)
45
if [ -z "$LATEST_TAG" ]; then
46
echo "No stable v-prefixed tag found. Exiting gracefully."
47
echo "found=false" >> $GITHUB_OUTPUT
0 commit comments