From baa3efaf0ef0d59555d2c3df6ce04303a31b45a2 Mon Sep 17 00:00:00 2001 From: Sojan Jose Date: Tue, 24 May 2022 22:15:57 +0530 Subject: [PATCH] chore: Update cache name in Circle CI builds (#4738) Co-authored-by: Pranav Raj S --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 974b981ab..076903576 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,14 +40,13 @@ jobs: - restore_cache: keys: - - chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-{{ checksum "Gemfile.lock" }} - - chatwoot-bundle + - chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-v20220524-{{ checksum "Gemfile.lock" }} - run: bundle install --frozen --path ~/.bundle - save_cache: paths: - ~/.bundle - key: chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-{{ checksum "Gemfile.lock" }} + key: chatwoot-bundle-{{ .Environment.CACHE_VERSION }}-v20220524-{{ checksum "Gemfile.lock" }} # Only necessary if app uses webpacker or yarn in some other way