Skip to content

Commit 2b9ed7b

Browse files
authored
Merge pull request #52 from CircleCI-Public/fix-ci/regex
ci: Fix CI deployment not working
2 parents 8986d6d + 57c34e3 commit 2b9ed7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -394,19 +394,19 @@ workflows:
394394
- build-linux:
395395
filters:
396396
tags:
397-
only: ^((?!pre).)*$
397+
only: /^((?!pre).)*$/
398398
branches:
399399
ignore: /.*/
400400
- build-macos:
401401
filters:
402402
tags:
403-
only: ^((?!pre).)*$
403+
only: /^((?!pre).)*$/
404404
branches:
405405
ignore: /.*/
406406
- build-windows:
407407
filters:
408408
tags:
409-
only: ^((?!pre).)*$
409+
only: /^((?!pre).)*$/
410410
branches:
411411
ignore: /.*/
412412
- release:
@@ -417,8 +417,8 @@ workflows:
417417
- build-windows
418418
filters:
419419
tags:
420-
only: ^((?!pre).)*$
420+
only: /^((?!pre).)*$/
421421
branches:
422422
ignore: /.*/
423423

424-
# VS Code Extension Version: 1.1.1
424+
# VS Code Extension Version: 1.4.0

0 commit comments

Comments
 (0)