I tried to follow the steps to achieve an automatic distribution of my iOS app for the Fabric Beta Distribution.
I used the code and added it as post function to my build archive. The problem is, that I only get the archive registered in the Fabric mac app, but the distribution process still has to be done manually.
I there a way to achieve an automatic distribution or upload process through the provided method in the link?
Here is the link to the fabric documentation: https://docs.fabric.io/apple/beta/build-tools.html
Mike from Fabric here. There are a couple of ways of doing this. (Note: I'm replying here instead of your email into our support channel.)
1) As mentioned in the documentation you link to, you can use this command any time after the .IPA has been built by your build server:
You could have that command run as the last step in your CI flow.
2) The other option is to use fastlane. Your Fastfile would look like this:
And after installing fastlane you would run
fastlane beta
from CI.