Skip to content

Commit df70b52

Browse files
msluszniakclaude
andcommitted
fix: download react-native-audio-api prebuilt binaries before pod install
CocoaPods prepare_command only runs with :git source, not with :path (which is used in React Native monorepos). The prebuilt .a files for iOS are not included in the npm package and must be downloaded manually before pod install. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3e6e369 commit df70b52

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-ios-llm-example.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ jobs:
5555
else
5656
echo "Exact cache hit, skipping prebuild"
5757
fi
58+
- name: Download react-native-audio-api prebuilt binaries
59+
working-directory: node_modules/react-native-audio-api
60+
run: |
61+
chmod +x scripts/download-prebuilt-binaries.sh
62+
scripts/download-prebuilt-binaries.sh ios
5863
- name: Install CocoaPods dependencies
5964
working-directory: apps/llm/ios
6065
run: |

0 commit comments

Comments
 (0)