From a1c3a045091e3fa78e6589131540bbf39229ec7e Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Fri, 16 Feb 2024 15:57:03 +0100 Subject: [PATCH] fix(ios): fix error on ci due to errno::EEXIST - File exists @ syserr_fail2_in The reason for the issue seems to be a bug in cocoapods < 15.2 See https://github.com/facebook/react-native/issues/42698 --- .github/workflows/ios-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ios-ci.yml b/.github/workflows/ios-ci.yml index d45f465..03ae834 100644 --- a/.github/workflows/ios-ci.yml +++ b/.github/workflows/ios-ci.yml @@ -26,6 +26,8 @@ jobs: - name: Install example npm dependencies run: yarn example --frozen-lockfile shell: bash + - name: Install Ruby gems + run: gem install cocoapods -v 1.15.2 - name: Install Pods run: ${{matrix.extraEnv}} pod install working-directory: example/ios