From b231d2864c774f8e13e2ee4189dfe4f981b329b5 Mon Sep 17 00:00:00 2001 From: Holt Wilkins Date: Wed, 13 Sep 2017 11:45:28 +1000 Subject: [PATCH] also cache build/ --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 307d044c..b9a901d1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,8 +40,9 @@ jobs: - run: sha256sum dist/*.tgz - save_cache: - key: dist-{{ .Environment.CIRCLE_SHA1 }}-v1 + key: build-{{ .Environment.CIRCLE_SHA1 }}-v1 paths: + - build - dist - *store-test-results @@ -64,7 +65,7 @@ jobs: - checkout - restore_cache: keys: - - dist-{{ .Environment.CIRCLE_SHA1 }}-v1 + - build-{{ .Environment.CIRCLE_SHA1 }}-v1 - run: ./godelw publish bintray --url https://api.bintray.com --subject palantir --repository releases --user "$BINTRAY_USERNAME" --password "$BINTRAY_PASSWORD" --publish --downloads-list bouncer workflows: