I’m newbie in iOS, swift and Xcode. How can I push...
# ios
a
I’m newbie in iOS, swift and Xcode. How can I push application into testflight from commandline and github-actions? I’ve created an apple distribution key, and download it. I’ve done it from Xcode UI (Archive -> Distribute app). Next I write in my console:
Copy code
xcodebuild -scheme QA -archivePath <path1> archive
xcodebuild -exportArchive -archivePath <path1> -exportPath <path2> -exportOptionsPlist <plist>
All Ok.
Copy code
xcrun altool --upload-app -f <path2> -u 
...
*** Error: code -21017 (Unable to validate your application. Could not determine the package's bundle id. The package is missing an Info.plist or the CFBundlePackageType is not 'APPL' or 'FMWK'.)
In
Info.plist
from IPA path I see
Copy code
<key>CFBundlePackageType</key>
  <string>APPL</string>
What do I wrong?
On github actions I have got error on the second step (-exportArchive): 1. If I run the same command as local I will have the error:
Copy code
error: There are no accounts registered with Xcode. Add your developer account to Xcode (in target 'XPointSample' from project 'XPointSample')
error: No profiles for 'com.inventale.xpointsamplekmp' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.inventale.xpointsamplekmp'. (in target 'XPointSample' from project 'XPointSample')
2. If I define the key (CODE_SIGN_IDENTITY=…) I have the error:
Copy code
error: XPointSample has conflicting provisioning settings. XPointSample is automatically signed, but code signing identity Apple Distribution: EDMAKS, OOO (JJ5E7Q6U6H) has been manually specified. Set the code signing identity value to "Apple Development" in the build settings editor, or switch to manual signing in the Signing & Capabilities editor. (in target 'XPointSample' from project 'XPointSample')
3. If I switch off autosign in Xcode (and push it) I have the error:
Copy code
error: "XPointSample" requires a provisioning profile with the Access WiFi Information feature. Select a provisioning profile in the Signing & Capabilities editor. (in target 'XPointSample' from project 'XPointSample')
What have I do? I’ve imported key on github-actions by
apple-actions/import-codesign-certs@v1
and it works (with another key) for signing macOS build.
s
Check your provisioning profile on https://developer.apple.com/account
l
also have a look at this:

https://www.youtube.com/watch?v=ccrUi5QnUA0&amp;t=1s

perhaps it could help