File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -148,11 +148,16 @@ jobs:
148
148
sudo xcode-select -s /Applications/Xcode.app
149
149
xcodebuild -version
150
150
151
- - name : Verify Xcode access to provisioning profile
151
+ - name : Check Xcode build settings
152
152
run : |
153
- echo "Listing all provisioning profiles visible to xcode :"
153
+ echo "Listing all the build settings for the project :"
154
154
cd ios && xcodebuild -showBuildSettings
155
155
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
+
156
161
- name : Set up Flutter
157
162
uses : subosito/flutter-action@v2
158
163
with :
@@ -163,7 +168,7 @@ jobs:
163
168
run : flutter pub get
164
169
165
170
- 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
167
172
168
173
- name : Install iOS App
169
174
run : flutter install ipa
You can’t perform that action at this time.
0 commit comments