Skip to content

Commit bf5ba3b

Browse files
committed
fix version matching
1 parent dfa2ec8 commit bf5ba3b

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
@@ -34,7 +34,7 @@ jobs:
3434
# Get tag name from event
3535
tag_name="${{ github.event.release.tag_name }}"
3636
37-
if [[ ! "$tag_name" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
37+
if [[ ! "$tag_name" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
3838
cd $(echo $tag_name | rev | cut -d'/' -f2- | rev)
3939
fi
4040

0 commit comments

Comments
 (0)