Skip to content
Merged
Changes from 1 commit
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
11 changes: 4 additions & 7 deletions .github/actions/setup-e2e-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,16 +329,13 @@ runs:
run: sudo xcode-select -s "/Applications/Xcode_$XCODE_VERSION.app"
shell: bash

- name: Restore CocoaPods specs cache
- name: Restore CocoaPods Pods cache
if: ${{ inputs.platform == 'ios' }}
id: cocoapods-specs-cache
uses: actions/cache@v4
with:
path: ~/.cocoapods/repos
key: ${{ runner.os }}-cocoapods-specs-${{ hashFiles('ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-specs-
continue-on-error: true # Don't fail if cache restoration has issues
path: ios/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('ios/Podfile.lock') }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is the key name change and missing restore-keys intentional here?
Also, have we considered removing the trunk with pod repo remove trunk?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes I am doing this as a safety measure for now - #202 (comment)

continue-on-error: true # Don't fail if cache restoration has issues

# Install CocoaPods w/ cached bundler environment
- name: Install CocoaPods via bundler
Expand Down
Loading