We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d090f76 commit 3d1f072Copy full SHA for 3d1f072
.circleci/config.yml
@@ -38,14 +38,18 @@ jobs:
38
key: v1-repo-{{ .Environment.CIRCLE_SHA1 }}
39
# We do this to compare sizes from these builds with master
40
- restore_cache:
41
- key: v1-prod-build-cache-master
+ key: v1-prod-app-build-cache-master
42
- run:
43
name: Build Application
44
command: yarn build:prod
45
- save_cache:
46
- key: v1-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}
+ key: v1-prod-app-build-cache-{{ .Environment.CIRCLE_BRANCH }}
47
paths:
48
- ./packages/app/www
49
+ - save_cache:
50
+ key: v1-prod-build-cache-{{ .Environment.CIRCLE_BRANCH }}
51
+ paths:
52
+ - ./www
53
- store_artifacts:
54
path: ./www
55
destination: www
0 commit comments