Skip to content

Commit

Permalink
circleci: run workflow when creating tags
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Panato <[email protected]>
  • Loading branch information
cpanato authored and poiana committed Apr 6, 2021
1 parent 3afade3 commit c504845
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,23 @@ jobs:
workflows:
main:
jobs:
- test
- lint
- test:
filters:
tags:
only: /(v)?[0-9]+(\.[0-9]+)*(-.*)*/
- lint:
filters:
tags:
only: /(v)?[0-9]+(\.[0-9]+)*(-.*)*/
- build-image:
requires:
- test
- lint
filters:
branches:
ignore: master
tags:
only: /(v)?[0-9]+(\.[0-9]+)*(-.*)*/
- build-push-main:
context: falco
requires:
Expand Down

0 comments on commit c504845

Please sign in to comment.