Skip to content

Commit

Permalink
[CI][FIX] Better handling release tags
Browse files Browse the repository at this point in the history
  • Loading branch information
katyukha committed Jul 8, 2023
1 parent e235ea0 commit fc7b326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
run: |
if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+-(rc|RC)[0-9]+$ ]]; then
echo "is_rc_release=true" >> $GITHUB_OUTPUT
elif [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]$ ]]; then
elif [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "is_rc_release=false" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit fc7b326

Please sign in to comment.