From 90c7092ffab4709b274f40673a4fbec5243dea88 Mon Sep 17 00:00:00 2001 From: The_Kohan Date: Mon, 28 Oct 2024 15:25:53 +0100 Subject: [PATCH] fix: adjust cache recovery on workflow --- .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 2ecbf589..e0ed74ce 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -56,7 +56,7 @@ jobs: example/ios/Pods ~/Library/Caches/CocoaPods ~/.cocoapods - key: build-ios-pods-${{ matrix.react-native-architecture }}-${{ hashFiles('example/node_modules/react-native/package.json') }} + key: build-ios-pods-${{ matrix.react-native-architecture }}-${{ hashFiles('node_modules/react-native/package.json') }} restore-keys: build-ios-pods-${{ matrix.react-native-architecture }}- - name: Install Pods @@ -75,7 +75,7 @@ jobs: uses: actions/cache@v4 with: path: ~/Library/Developer/Xcode/DerivedData - key: build-ios-derived-data-${{ matrix.react-native-architecture }}-${{ hashFiles('example/node_modules/react-native/package.json') }} + key: build-ios-derived-data-${{ matrix.react-native-architecture }}-${{ hashFiles('node_modules/react-native/package.json') }} restore-keys: build-ios-derived-data-${{ matrix.react-native-architecture }}- - name: Build app