diff --git a/.github/workflows/build-mobile-comment.yml b/.github/workflows/build-mobile-comment.yml index bd3e6bf..eb395ae 100644 --- a/.github/workflows/build-mobile-comment.yml +++ b/.github/workflows/build-mobile-comment.yml @@ -113,8 +113,8 @@ jobs: - name: Cache Pods uses: actions/cache@v4 with: - path: ./apps/expo/ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('./apps/expo/ios/Podfile.lock') }} + path: '**/Pods' + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} - name: Build iOS app run: cd apps/expo && pnpm ipa diff --git a/.github/workflows/build-mobile.yml b/.github/workflows/build-mobile.yml index bd7e6a1..e68c85b 100644 --- a/.github/workflows/build-mobile.yml +++ b/.github/workflows/build-mobile.yml @@ -104,8 +104,8 @@ jobs: - name: Cache Pods uses: actions/cache@v4 with: - path: ./apps/expo/ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('./apps/expo/ios/Podfile.lock') }} + path: '**/Pods' + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} - name: Build iOS app run: cd apps/expo && pnpm ipa diff --git a/.github/workflows/release-mobile.yml b/.github/workflows/release-mobile.yml index d472a2d..4788a71 100644 --- a/.github/workflows/release-mobile.yml +++ b/.github/workflows/release-mobile.yml @@ -132,8 +132,8 @@ jobs: - name: Cache Pods uses: actions/cache@v4 with: - path: ./apps/expo/ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('./apps/expo/ios/Podfile.lock') }} + path: '**/Pods' + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} - name: Build iOS app run: cd apps/expo && pnpm ipa