Skip to content

Commit 963796c

Browse files
committed
Refine tag patterns in release.yaml for improved version matching
1 parent f862b7c commit 963796c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/release.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
on:
22
push:
33
# Pattern matched against refs/tags
4-
tags:
5-
- 'v[0-9]+(\.[0-9]+)*([a-z]+[0-9]+)?(\.post[0-9]+)?(\.dev[0-9]+)?'
6-
4+
tags: ["v[0-9]+", "v[0-9]+.[0-9]+", "v[0-9]+.[0-9]+.[0-9]+", "v[0-9]+.[0-9]+.[0-9]+.post[0-9]+", "v[0-9]+.[0-9]+.[0-9]+.dev[0-9]+",]
75

86
permissions:
97
contents: read

0 commit comments

Comments
 (0)