Skip to content

Commit 3e3c2dd

Browse files
authored
Merge pull request #19574 from Expensify/revert-19485-Rory-FixPodCache
Revert "[No QA] Fix pod cache logic"
2 parents 4d6a25f + bfdb3f1 commit 3e3c2dd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/platformDeploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ jobs:
158158
bundler-cache: true
159159

160160
- uses: actions/cache@v3
161-
id: cache-pods
162161
with:
163162
path: ios/Pods
164163
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
164+
restore-keys: |
165+
${{ runner.os }}-pods-
165166
166167
- name: Install cocoapods
167-
if: ${{ !fromJSON(steps.cache-pods.outputs.cache-hit) }}
168168
uses: nick-invision/retry@0711ba3d7808574133d713a0d92d2941be03a350
169169
with:
170170
timeout_minutes: 10

.github/workflows/testBuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ jobs:
141141
bundler-cache: true
142142

143143
- uses: actions/cache@v3
144-
id: cache-pods
145144
with:
146145
path: ios/Pods
147146
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
147+
restore-keys: |
148+
${{ runner.os }}-pods-
148149
149150
- name: Install cocoapods
150-
if: ${{ !fromJSON(steps.cache-pods.outputs.cache-hit) }}
151151
uses: nick-invision/retry@0711ba3d7808574133d713a0d92d2941be03a350
152152
with:
153153
timeout_minutes: 10

0 commit comments

Comments
 (0)