I've been working to figure out a good solution to pushing daily TestFlight builds to internal testers for our iOS application. Since these would be pushed daily, I do not want to use existing fastlane actions that generate a commit each time. What I would like to do is set the build of the app based on an environment variable (a build number generated by Jenkins).
This way, I would just export a build number from the jenkins job and use that to increment the build for the TestFlight upload.
After that I was planning on running this as a daily job.
Has anyone done something like this?