Fix pod install: --repo-update for LiveKit 2.15.3's transitive deps

Git pin now works (LiveKitClient 2.15.3 pre-downloaded), but the build box's
cached spec repo is stale: "Unable to find a specification for LiveKitUniFFI
(= 0.0.6)". Both LiveKitUniFFI 0.0.6 and LiveKitWebRTC 144.7559.11 are published
on the trunk, so --repo-update on the real pod install refreshes the repo and
resolves them.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 20:14:57 +05:30
parent bcd5699e2a
commit 46cc2610b9
+4 -1
View File
@@ -93,7 +93,10 @@ workflows:
- name: Install CocoaPods
script: |
cd mobile/ios/App
pod install
# --repo-update refreshes the cached spec repo so it knows LiveKit 2.15.3's transitive deps
# (LiveKitUniFFI 0.0.6 + LiveKitWebRTC 144.7559.11) — they ARE on the trunk but the build box's
# cached repo was stale ("Unable to find a specification for LiveKitUniFFI (= 0.0.6)").
pod install --repo-update
- name: Build the signed IPA
script: |