We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8937102 commit fdcc084Copy full SHA for fdcc084
1 file changed
.github/workflows/release.yml
@@ -155,6 +155,9 @@ jobs:
155
# Get all version tags (starting with 'v') and extract version numbers
156
VERSIONS=$(git tag -l 'v*' | sed 's/^v//' | sort -V | tr '\n' ' ' | sed 's/ $//')
157
158
+ # Remove vlatest from the list if present
159
+ VERSIONS=$(echo $VERSIONS | sed 's/\blatest\b//g' | xargs)
160
+
161
if [ -z "$VERSIONS" ]; then
162
echo "Warning: No version tags found"
163
VERSIONS="${{ github.event.release.tag_name }}"
0 commit comments