From 74b5898af7f3fb3c0f533c036982fe97ba5e3fd4 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Fri, 1 Sep 2023 20:21:40 +0200 Subject: [PATCH] fix: Use `pod install` instead of `bundle exec pod ...` --- .github/workflows/build-ios.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index b20adfe..d40d27a 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -63,7 +63,7 @@ jobs: restore-keys: | ${{ runner.os }}-pods- - name: Install Pods - run: bundle exec pod check || bundle exec pod install + run: pod install - name: Install xcpretty run: gem install xcpretty - name: Build App @@ -124,7 +124,7 @@ jobs: restore-keys: | ${{ runner.os }}-pods- - name: Install Pods - run: bundle exec pod check || bundle exec pod install + run: pod install - name: Install xcpretty run: gem install xcpretty - name: Build App