File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -220,13 +220,16 @@ jobs:
220220
221221 - name : Build example for iOS
222222 run : |
223- yarn add @iterable/react-native-sdk
224- yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
225- echo "${{ env.TURBO_CACHE_DIR }}"
223+
224+ # yarn add @iterable/react-native-sdk
225+ # yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
226+ # echo "${{ env.TURBO_CACHE_DIR }}"
227+
228+ xcodebuild -list -workspace ReactNativeSdkExample.xcworkspace
226229
227230 xcodebuild clean build \
228- -project ReactNativeSdkExample.xcodeproj \ # Replace with your workspace name
229- -scheme ReactNativeSdkExample \ # Replace with your app's scheme name
231+ -workspace ReactNativeSdkExample.xcworkspace \ # Replace with your workspace name
232+ -scheme ReactNativeSdkExample \ # Replace with your app's scheme name
230233 -destination 'platform=iOS Simulator,name=iPhone 16 Pro' \ # Adjust simulator as needed
231234 -sdk iphonesimulator \
232235 CODE_SIGN_IDENTITY="" \
You can’t perform that action at this time.
0 commit comments