Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
with:
path: |
**/ios/Pods
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
key: ${{ runner.os }}-cocoapods-${{ hashFiles('package.json', '*.podspec', 'example/ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-

Expand All @@ -190,6 +190,7 @@ jobs:
run: |
cd example
bundle install
rm -f ios/Podfile.lock ios/Pods/Manifest.lock
bundle exec pod install --project-directory=ios

- name: Cache cocoapods
Expand Down Expand Up @@ -229,7 +230,7 @@ jobs:
with:
path: |
**/ios/Pods
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
key: ${{ runner.os }}-cocoapods-${{ hashFiles('package.json', '*.podspec', 'example/ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-

Expand All @@ -238,6 +239,7 @@ jobs:
run: |
cd example
bundle install
rm -f ios/Podfile.lock ios/Pods/Manifest.lock
bundle exec pod install --project-directory=ios

- name: Restore iOS build cache
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
},
"homepage": "https://github.com/rive-app/rive-nitro-react-native#readme",
"runtimeVersions": {
"ios": "6.18.2",
"ios": "6.20.4",
"android": "11.4.0"
},
"publishConfig": {
Expand Down
Loading