From 6387a7ea06c795e7f94cdcec8b82aae30a0dd7cc Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Thu, 15 Feb 2024 17:00:28 +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