Skip to content

Commit 18656fc

Browse files
authored
chore(gh): update release workflow tag pattern (#457)
Replaced broad `v*` tag filter with a more specific pattern: `v*.*.*` to match stable SemVer releases (e.g. `v2.0.0`) and pre-releases (e.g. `v2.1.0-beta`, `v2.1.0-rc.1`). Signed-off-by: Ryan Johnson <ryan@tenthirtyam.org>
1 parent 86e1046 commit 18656fc

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
@@ -6,7 +6,7 @@ name: Release
66
on:
77
push:
88
tags:
9-
- 'v*'
9+
- 'v*.*.*' # Match release tags (stable and pre-releases), e.g. v1.2.3, v1.2.3-rc.1
1010

1111
permissions:
1212
contents: write

0 commit comments

Comments
 (0)