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 f4a3cc0 commit 82face2Copy full SHA for 82face2
git-cliff-release/action.yaml
@@ -60,12 +60,12 @@ runs:
60
- name: Install git-cliff
61
shell: bash
62
run: pip install git-cliff
63
- - name: Locally remove beta tags
+ - name: Locally remove pre-release tags
64
65
working-directory: ${{ github.workspace }}/__release_metadata_repo
66
run: |
67
- if git tag | grep -e 'b[0-9]' -e '-beta\.' > /dev/null 2> /dev/null; then
68
- git tag | grep -e 'b[0-9]' -e '-beta\.' | xargs -r git tag --delete
+ if git tag | grep -e '[ab][0-9]' -e '-beta\.' -e '-alpha\.' > /dev/null 2> /dev/null; then
+ git tag | grep -e '[ab][0-9]' -e '-beta\.' -e '-alpha\.' | xargs -r git tag --delete
69
fi
70
- name: Determine version number
71
id: version_number
0 commit comments