diff options
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 4bbc884..bdba9d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ jobs: steps: - checkout - restore_cache: - key: 'v1-hakyll-{{ arch }}-{{ .Branch }}' + key: 'v2-hakyll-{{ arch }}-{{ .Branch }}' - run: name: 'Update cabal indices' command: 'cabal update' @@ -19,7 +19,7 @@ jobs: name: 'Build and run tests' command: 'cabal test' - save_cache: - key: 'v1-hakyll-{{ arch }}-{{ .Branch }}-{{ .Revision }}' + key: 'v2-hakyll-{{ arch }}-{{ .Branch }}-{{ .Revision }}' paths: - '~/.cabal' - '~/.ghc' |