Skip to content

Commit 6cb0f16

Browse files
Update gptdriverscript.yml
1 parent c2f8525 commit 6cb0f16

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/gptdriverscript.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)