From b68256ed828150afb2ff68f59037d3eeee6c6dd1 Mon Sep 17 00:00:00 2001 From: verzelea Date: Wed, 4 Nov 2020 20:26:56 +0100 Subject: [PATCH] Fix: image --- .circleci/config.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ec814ab..4811a86 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,8 +91,6 @@ jobs: name: Launching e2e test command: yarn test:e2e image: - environment: - IMAGE_NAME: grennrich/mastertpci docker: - image: circleci/buildpack-deps:stretch steps: @@ -100,14 +98,14 @@ jobs: - setup_remote_docker - run: name: Build Docker image - command: docker build -t $IMAGE_NAME:app . + command: docker build -t grennrich/mastertpci:app . - run: name: Archive Docker image - command: docker save -o image.tar $IMAGE_NAME + command: docker save -o image.tar grennrich/mastertpci - persist_to_workspace: root: . paths: - - ./image.tar + - ./image.tar publish: environment: IMAGE_NAME: grennrich/mastertpci