From 42a2ea02f93067722866ccbfbdca5175a9b91000 Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Tue, 31 Oct 2023 10:58:27 +0100 Subject: [PATCH] Install pods only if not cached --- .github/workflows/e2e_ios.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e_ios.yml b/.github/workflows/e2e_ios.yml index 2881de04d..2d7a8f68c 100644 --- a/.github/workflows/e2e_ios.yml +++ b/.github/workflows/e2e_ios.yml @@ -84,10 +84,9 @@ jobs: path: ios/Pods key: pods-${{ hashFiles('**/Podfile.lock') }} - - name: Update Pods - run: | - gem update cocoapods xcodeproj - cd ios && pod install && cd .. + - name: Install CocoaPods + if: steps.podcache.outputs.cache-hit != 'true' + run: cd ios && pod install && cd .. # Generate the secret files needed for a release build - name: Create .env file