aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml1
-rw-r--r--Makefile1
2 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0367bfc..0e3edc2 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -6,7 +6,6 @@ jobs:
6 steps: 6 steps:
7 - checkout 7 - checkout
8 - setup_remote_docker 8 - setup_remote_docker
9 - run: yarn
10 - run: make build 9 - run: make build
11 - run: make publish 10 - run: make publish
12 11
diff --git a/Makefile b/Makefile
index 11880fa..6386336 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,7 @@ all: dev
7 7
8.PHONY: build 8.PHONY: build
9build: 9build:
10 yarn
10 yarn build 11 yarn build
11 docker build -t $(TAG_LATEST) . 12 docker build -t $(TAG_LATEST) .
12 13