aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml16
1 files changed, 15 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0e3edc2..f40a34c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -5,7 +5,17 @@ jobs:
5 - image: circleci/node 5 - image: circleci/node
6 steps: 6 steps:
7 - checkout 7 - checkout
8 - setup_remote_docker 8 - setup_remote_docker:
9 version: 19.03.13
10 - run: make build
11
12 build_and_publish:
13 docker:
14 - image: circleci/node
15 steps:
16 - checkout
17 - setup_remote_docker:
18 version: 19.03.13
9 - run: make build 19 - run: make build
10 - run: make publish 20 - run: make publish
11 21
@@ -16,4 +26,8 @@ workflows:
16 - build: 26 - build:
17 filters: 27 filters:
18 branches: 28 branches:
29 ignore: master
30 - build_and_publish:
31 filters:
32 branches:
19 only: master 33 only: master