Skip to content

Commit

Permalink
Fix CircleCI not building publishing releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ernoaapa committed Feb 11, 2019
1 parent 97d0112 commit 80e427b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .circleci/config.yml
Expand Up @@ -57,3 +57,37 @@ workflows:
- /v.*/
branches:
ignore: /.*/

build_and_publish:
jobs:
- test:
# Don't run when branches updates, only when tags get created
filters:
tags:
only:
- /v.*/
branches:
ignore: /.*/

- build:
requires:
- test
# Don't run when branches updates, only when tags get created
filters:
tags:
only:
- /v.*/
branches:
ignore: /.*/

- publish:
requires:
- build

# Don't run when branches updates, only when tags get created
filters:
tags:
only:
- /v.*/
branches:
ignore: /.*/

0 comments on commit 80e427b

Please sign in to comment.