Skip to content

Commit 2fe69fb

Browse files
committed
CI: stricter matching on tag names for release builds
1 parent 6820d30 commit 2fe69fb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ name: CI
33
on:
44
push:
55
branches: [master]
6-
tags: ["v*"]
6+
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
7+
tags:
8+
- "v[0-9].[0-9].[0-9]"
9+
- "v[0-9].[0-9].[0-9]-*"
10+
711
pull_request:
812
branches: [master]
913

0 commit comments

Comments
 (0)