From c5f4c89d231a31ed6f283b1a51e4977aba347415 Mon Sep 17 00:00:00 2001 From: Bruno Barbieri Date: Thu, 3 Oct 2024 15:03:17 -0400 Subject: [PATCH] pod unlock --- .github/workflows/macstadium-builds.yml | 4 +++- .github/workflows/macstadium-tests.yml | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macstadium-builds.yml b/.github/workflows/macstadium-builds.yml index 4de26e67e9b..2b313c9c09c 100644 --- a/.github/workflows/macstadium-builds.yml +++ b/.github/workflows/macstadium-builds.yml @@ -59,7 +59,9 @@ jobs: npx react-native info - name: Install pods - run: yarn install-bundle && yarn install-pods + run: | + rm -rf /Users/administrator/.cocoapods/repos/cocoapods/.git/index.lock + yarn install-bundle && yarn install-pods - uses: irgaly/xcode-cache@v1 with: diff --git a/.github/workflows/macstadium-tests.yml b/.github/workflows/macstadium-tests.yml index 237d1614507..41877da3908 100644 --- a/.github/workflows/macstadium-tests.yml +++ b/.github/workflows/macstadium-tests.yml @@ -103,8 +103,10 @@ jobs: npx react-native info - name: Install pods - run: yarn install-bundle && yarn install-pods - + run: | + rm -rf /Users/administrator/.cocoapods/repos/cocoapods/.git/index.lock + yarn install-bundle && yarn install-pods + - uses: irgaly/xcode-cache@v1 with: key: xcode-cache-deriveddata-${{ github.workflow }}-${{ github.sha }}