Skip to content

Commit 7298ff8

Browse files
output project scheme before attempting to build
1 parent 62914f6 commit 7298ff8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff 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="" \

0 commit comments

Comments
 (0)