From 8930efab9c6408055c3205b120427407fb5333d6 Mon Sep 17 00:00:00 2001 From: verzelea Date: Wed, 4 Nov 2020 20:32:39 +0100 Subject: [PATCH] Fix: image v2 --- .circleci/config.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4811a86..65ad802 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -92,20 +92,20 @@ jobs: command: yarn test:e2e image: docker: - - image: circleci/buildpack-deps:stretch + - image: circleci/buildpack-deps:stretch steps: - - checkout - - setup_remote_docker - - run: - name: Build Docker image - command: docker build -t grennrich/mastertpci:app . - - run: - name: Archive Docker image - command: docker save -o image.tar grennrich/mastertpci - - persist_to_workspace: - root: . - paths: - - ./image.tar + - checkout + - setup_remote_docker + - run: + name: Build Docker image + command: docker build -t grennrich/mastertpci:app . + - run: + name: Archive Docker image + command: docker save -o image.tar grennrich/mastertpci + - persist_to_workspace: + root: . + paths: + - ./image.tar publish: environment: IMAGE_NAME: grennrich/mastertpci