Skip to content

Commit

Permalink
fix pipeline (#94)
Browse files Browse the repository at this point in the history
Apparently all tags are skipped by default unless you had the filters enabled
  • Loading branch information
Nick Huanca committed Apr 24, 2019
1 parent d264363 commit aadf95a
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,24 @@ workflows:
version: 2
build:
jobs:
- build-2-7
- build-3-6
- build-3-7
- build-2-7:
filters:
tags:
only: /.*/
branches:
only: /.*/
- build-3-6:
filters:
tags:
only: /.*/
branches:
only: /.*/
- build-3-7:
filters:
tags:
only: /.*/
branches:
only: /.*/
- compile-darwin:
requires:
- build-2-7
Expand All @@ -250,9 +265,19 @@ workflows:
- build-2-7
- build-3-6
- build-3-7
filters:
tags:
only: /.*/
branches:
only: /.*/
- end-to-end:
requires:
- compile
filters:
tags:
only: /.*/
branches:
only: /.*/
- release:
requires:
- end-to-end
Expand Down

0 comments on commit aadf95a

Please sign in to comment.