Skip to content

Commit

Permalink
Fix the tag format in the publish action.
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Oct 27, 2022
1 parent 97cc517 commit e4493e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Check Tag
id: check-release-tag
run: |
if [[ ${{ github.event.ref }} =~ ^refs/tags/[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|[.]dev[0-9]+)?$ ]]; then
if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|[.]dev[0-9]+)?$ ]]; then
echo ::set-output name=release_tag::true
fi
Expand Down

0 comments on commit e4493e9

Please sign in to comment.