Skip to content

Commit 1db90a4

Browse files
committed
Fix the tag pattern in workflow
1 parent cfa2137 commit 1db90a4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci_tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ on:
99
branches:
1010
- main # GitHub now defaults to 'main' as the name of the primary branch. Change this as needed.
1111
tags: # run CI if specific tags are pushed
12-
- '[0-9]+.[0-9]+.[0-9]+[a-z0-9]*'
12+
- '[0-9]+.[0-9]+.[0-9]+[a-z0-9]*' # pre-releases -- note that brackets only
13+
# match single character, and that * does
14+
# not mean zero or more of previous
15+
# character.
16+
- '[0-9]+.[0-9]+.[0-9]+' # actual releases.
1317
pull_request:
1418
branches: # only build on PRs against 'main' if you need to further limit when CI is run.
1519
- main

0 commit comments

Comments
 (0)