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 39716bd commit 2481fb8Copy full SHA for 2481fb8
git-cliff-release/action.yaml
@@ -54,8 +54,8 @@ runs:
54
shell: bash
55
working-directory: ${{ github.workspace }}/__release_metadata_repo
56
run: |
57
- if git tag | grep 'b[0-9]' > /dev/null 2> /dev/null; then
58
- git tag | grep 'b[0-9]' | xargs -r git tag --delete
+ if git tag | grep -e 'b[0-9]' -e '-beta\.' > /dev/null 2> /dev/null; then
+ git tag | grep -e 'b[0-9]' -e '-beta\.' | xargs -r git tag --delete
59
fi
60
- name: Determine version number
61
id: version_number
0 commit comments