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 }}