So I’m building an iOS pipeline that needs two .ipa files. One is for development and the other for the app-store. I already have both certificates and provisioning profiles uploaded but the issue is after the xcodebuild step, I need to change the bundle identifier and then export the second .ipa.
- xcode-archive => Generates 1st .ipa (development), uses project bundle identifier
- export-xarchive => Need to generate 2nd .ipa (app-store), need to use a different bundle identifier.
The question is, how can I change the bundle id for the second step?
Thanks!