We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ec0b4b + b6c7e99 commit 4574e16Copy full SHA for 4574e16
src/commands/pod_install.yml
@@ -20,8 +20,8 @@ steps:
20
steps:
21
- restore_cache:
22
keys:
23
- - cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
24
- - cache-pods-
+ - {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}
+ - {{ .Environment.CACHE_VERSION }}-cache-pods
25
- run:
26
name: Install CocoaPods
27
command: |
@@ -32,4 +32,4 @@ steps:
32
- save_cache:
33
paths:
34
- <<parameters.pod_install_directory>>/Pods
35
- key: cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
+ key: {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}
0 commit comments