Skip to content

Commit e4493e9

Browse files
committed
Fix the tag format in the publish action.
1 parent 97cc517 commit e4493e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Check Tag
1818
id: check-release-tag
1919
run: |
20-
if [[ ${{ github.event.ref }} =~ ^refs/tags/[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|[.]dev[0-9]+)?$ ]]; then
20+
if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|[.]dev[0-9]+)?$ ]]; then
2121
echo ::set-output name=release_tag::true
2222
fi
2323

0 commit comments

Comments
 (0)