Skip to content

Commit c07a1c2

Browse files
committed
fix: ci config regex
Adding the tag filter to the build-and-test job because it is required for the publish job and it won't run otherwise. Adapted the regex to not include rc tags.
1 parent 21bdc32 commit c07a1c2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@ jobs:
2929
workflows:
3030
build:
3131
jobs:
32-
- build-and-test
32+
- build-and-test:
33+
filters:
34+
tags:
35+
only: /^v\d+\.\d+\.\d+$/
3336
- publish:
3437
requires:
3538
- build-and-test
3639
filters:
3740
tags:
38-
only: /^v\d+\.\d+\.\d+(-rc\.\d+)?$/
41+
only: /^v\d+\.\d+\.\d+$/
3942
branches:
4043
ignore: /.*/

0 commit comments

Comments
 (0)