From 54dacbb91b1efc6f4d904efedd4005bee2343349 Mon Sep 17 00:00:00 2001 From: dannyrb Date: Tue, 13 Aug 2019 20:33:31 -0400 Subject: [PATCH] Remove unnecessary checkout --- .circleci/config.yml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 191db017d..ececa5232 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -222,26 +222,11 @@ jobs: docker push ohif/$IMAGE_NAME:latest fi - build_demo_site: + deploy_demo_site: <<: *defaults steps: - # Download and cache dependencies - - checkout - - restore_cache: - name: Restore Yarn Package Cache - keys: - # when lock file changes, use increasingly general patterns to restore cache - - yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }} - - yarn-packages-v1-{{ .Branch }}- - - yarn-packages-v1- - - run: - name: Install Dependencies - command: yarn install --frozen-lockfile - - save_cache: - name: Save Yarn Package Cache - paths: - - ~/.cache/yarn - key: yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }} + - attach_workspace: + at: ~/repo # Build & Test - run: name: 'Build Demo Site, Upload SourceMaps, Send Deploy Notification'