Skip to content

Commit 2481fb8

Browse files
authored
Ignore more kinds of beta tags in git-cliff-release (#138)
1 parent 39716bd commit 2481fb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-cliff-release/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ runs:
5454
shell: bash
5555
working-directory: ${{ github.workspace }}/__release_metadata_repo
5656
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
57+
if git tag | grep -e 'b[0-9]' -e '-beta\.' > /dev/null 2> /dev/null; then
58+
git tag | grep -e 'b[0-9]' -e '-beta\.' | xargs -r git tag --delete
5959
fi
6060
- name: Determine version number
6161
id: version_number

0 commit comments

Comments
 (0)