Skip to content

Commit 3d1f072

Browse files
author
Ives van Hoorne
committed
Fix production caches
1 parent d090f76 commit 3d1f072

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.circleci/config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,18 @@ jobs:
3838
key: v1-repo-{{ .Environment.CIRCLE_SHA1 }}
3939
# We do this to compare sizes from these builds with master
4040
- restore_cache:
41-
key: v1-prod-build-cache-master
41+
key: v1-prod-app-build-cache-master
4242
- run:
4343
name: Build Application
4444
command: yarn build:prod
4545
- save_cache:
46-
key: v1-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}
46+
key: v1-prod-app-build-cache-{{ .Environment.CIRCLE_BRANCH }}
4747
paths:
4848
- ./packages/app/www
49+
- save_cache:
50+
key: v1-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}
51+
paths:
52+
- ./www
4953
- store_artifacts:
5054
path: ./www
5155
destination: www

0 commit comments

Comments
 (0)