diff options
author | genofire <geno+dev@fireorbit.de> | 2019-06-08 23:03:21 +0200 |
---|---|---|
committer | Christian Schneppe <kriztan@users.noreply.github.com> | 2019-06-08 23:03:21 +0200 |
commit | 64d13a1c1c53ccd34755e9c92ac7b89044ff6ce0 (patch) | |
tree | 2858d533c4f0c93c58030ae8265ce2120784ab39 | |
parent | a31aa26a5ad8019af5705b748a07701ddba84750 (diff) |
fix ci spliting in workflow really (#350)
-rw-r--r-- | .circleci/config.yml | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 64b85c0f6..7089a6cfa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,14 +63,12 @@ jobs: workflows: version: 2 test_build: - branches: - only: - - master jobs: - - build - test_publish: - branches: - ignore: - - master - jobs: - - publish + - build: + filters: + branches: + ignore: master + - publish: + filters: + branches: + only: master |