Skip to content

Commit b468f76

Browse files
Working on iOS GitHub CI
1 parent 13a20cd commit b468f76

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/pr_validation.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,16 @@ jobs:
148148
sudo xcode-select -s /Applications/Xcode.app
149149
xcodebuild -version
150150
151-
- name: Verify Xcode access to provisioning profile
151+
- name: Check Xcode build settings
152152
run: |
153-
echo "Listing all provisioning profiles visible to xcode:"
153+
echo "Listing all the build settings for the project:"
154154
cd ios && xcodebuild -showBuildSettings
155155
156+
- name: Check Xcode project Runner build settings
157+
run: |
158+
echo "Listing all the build settings for the Runner scheme:"
159+
cd ios && xcodebuild -workspace Runner.xcworkspace -scheme Runner -showBuildSettings
160+
156161
- name: Set up Flutter
157162
uses: subosito/flutter-action@v2
158163
with:
@@ -163,7 +168,7 @@ jobs:
163168
run: flutter pub get
164169

165170
- name: Build iOS App
166-
run: flutter build ipa --debug --export-options-plist=$EXPORT_OPTS_PATH
171+
run: flutter build ipa --debug --verbose --export-options-plist=$EXPORT_OPTS_PATH
167172

168173
- name: Install iOS App
169174
run: flutter install ipa

0 commit comments

Comments
 (0)