File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -135,13 +135,12 @@ jobs:
135135 <false/>
136136</dict>
137137</plist>
138- EOF_PLIST # Ensure this matches the opening EOF_PLIST and is at the same indentation as 'cat << EOF_PLIST'
138+ EOF_PLIST # Corrected indentation for this EOF_PLIST
139139 echo "Exporting IPA to : $IPA_OUTPUT_DIR"
140140 xcodebuild -exportArchive \
141141 -archivePath "${{ env.ARCHIVE_PATH }}" \
142142 -exportPath "$IPA_OUTPUT_DIR" \
143- -exportOptionsPlist "$EXPORT_OPTIONS_PLIST_PATH" \
144- | xcpretty || true # xcpretty for cleaner logs
143+ -exportOptionsPlist "$EXPORT_OPTIONS_PLIST_PATH"
145144
146145 # Find the generated IPA file dynamically, as its exact name might vary
147146 GENERATED_IPA=$(find "$IPA_OUTPUT_DIR" -name "*.ipa" -print -quit)
@@ -153,7 +152,7 @@ EOF_PLIST # Ensure this matches the opening EOF_PLIST and is at the same indenta
153152 echo "Generated IPA path : $GENERATED_IPA"
154153 echo "APP_PATH=$GENERATED_IPA" >> $GITHUB_ENV # Overwrite APP_PATH to point to the IPA
155154 echo "--- Contents of IPA Output Directory ---"
156- ls -R "$IPA_OUTPUT_DIR" # Show what was actually exported
155+ ls -R "$IPA_OUTPUT_DIR" # Corrected variable name from $IPA_OUTPUT_OUTPUT_DIR to $IPA_OUTPUT_DIR
157156 echo "----------------------------------------"
158157 working-directory : ./ios-app-repo # This step also runs from the app's checkout root.
159158
You can’t perform that action at this time.
0 commit comments