Delivering iOS app using Fastlane
Introduction You can easily deliver an iOS app in two ways: through beta and release lanes. The First Way - TestFlight By creating a beta lane inside the Fastfile. It utilizes: build_app: To easily build and sign your app (via gym). pilot: Makes it easier to manage your app on Apple’s TestFlight. lane :beta do build_app(scheme: "YourScheme") pilot end To run Fastlane: fastlane beta Attention Before proceeding, you need to have the ipa or pkg file generated....