From f3f512c6dda4924297dbdb2b7db1ce37d4abbc26 Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Mon, 18 May 2020 17:50:25 +0200 Subject: [PATCH] fix(.circleci): correct publishing command Signed-off-by: Leonardo Grasso --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b834a343f05..a874bbf3499 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -289,9 +289,9 @@ jobs: docker push "falcosecurity/falco:${CIRCLE_TAG}-slim" docker push "falcosecurity/falco:latest-slim" - run: - name: Build and publish stable + name: Build and publish falco command: | - docker build --build-arg VERSION_BUCKET=deb --build-arg FALCO_VERSION=${CIRCLE_TAG} -t "falcosecurity/falco:${CIRCLE_TAG}" docker/stable + docker build --build-arg VERSION_BUCKET=deb --build-arg FALCO_VERSION=${CIRCLE_TAG} -t "falcosecurity/falco:${CIRCLE_TAG}" docker/falco docker tag "falcosecurity/falco:${CIRCLE_TAG}" falcosecurity/falco:latest echo ${DOCKERHUB_SECRET} | docker login -u ${DOCKERHUB_USER} --password-stdin docker push "falcosecurity/falco:${CIRCLE_TAG}"