Skip to content

Commit

Permalink
chore: pods cache key fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mfazekas committed Sep 22, 2023
1 parent c070670 commit c9dd255
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
id: pods-cache
with:
path: ios/Pods
key: pods-${{ hashFiles('**/Podfile.lock') }}-${{ inputs.MAP_IMPL }}
key: pods-${{ hashFiles('**/Podfile.lock') }}-${{ inputs.MAP_IMPL }}-${{ inputs.NEW_ARCH }}}

- name: Install Pod Dependencies
if: steps.pods-cache.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion src/components/MapView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ class MapView extends NativeBridgeComponent(
_runNativeCommand<RefType, ReturnType = NativeArg>(
methodName: string,
nativeRef: RefType | undefined,
args: NativeArg[] = [],
args: NativeArg[],
): Promise<ReturnType> {
// when this method is called after component mounts, the ref is not yet set
// schedule it to be called after a timeout
Expand Down

0 comments on commit c9dd255

Please sign in to comment.