Skip to content

Commit 17d5e55

Browse files
committed
Fix release.yml tag pattern for glob matching (no v prefix)
1 parent bf0bf7a commit 17d5e55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33
# Sequence of patterns matched against refs/tags
44
tags:
5-
- 'v[0-9]+.[0-9]+.[0-9]+' # Push events to matching v*, i.e. v1.0, v20.15.10
5+
- '*.*.*' # Push events to matching semver tags (no v prefix)
66

77
name: Publish Release
88

0 commit comments

Comments
 (0)