We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21d4062 commit fe45192Copy full SHA for fe45192
1 file changed
.github/workflows/ios-app-store.yml
@@ -153,6 +153,8 @@ jobs:
153
154
# Find the IPA file
155
IPA_FILE=$(find build/ios/ipa -name "*.ipa" | head -n 1)
156
+ IPA_DIR=$(dirname "$IPA_FILE")
157
+ IPA_NAME=$(basename "$IPA_FILE")
158
159
# Create a temporary directory
160
TEMP_DIR=$(mktemp -d)
@@ -171,7 +173,11 @@ jobs:
171
173
172
174
# Repackage the IPA
175
cd "$TEMP_DIR"
- zip -qr "$IPA_FILE" Payload
176
+ NEW_IPA="$TEMP_DIR/fixed.ipa"
177
+ zip -qr "$NEW_IPA" Payload
178
+
179
+ # Replace the original IPA
180
+ mv "$NEW_IPA" "$IPA_FILE"
181
cd -
182
183
# Cleanup
0 commit comments