From 09a7a1c12d4f6f16afcd7761b9fa102ddce89b48 Mon Sep 17 00:00:00 2001 From: solidnerd Date: Mon, 19 Nov 2018 07:42:52 +0100 Subject: [PATCH] Invalidate cache for all builds --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7b720897..8745a2a4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: - restore_cache: keys: - - cache-{{ .Branch }} + - cache-v2-{{ .Branch }} paths: - /tmp/cache/layers.tar @@ -65,7 +65,7 @@ jobs: docker save -o /tmp/cache/layers.tar ${IMAGE_NAME} - save_cache: - key: cache-{{ .Branch }}-{{ epoch }} + key: cache-v2-{{ .Branch }} paths: - /tmp/cache/layers.tar