Skip to content

Instantly share code, notes, and snippets.

@up1
Last active April 2, 2016 11:04
Show Gist options
  • Select an option

  • Save up1/20ee6e9e7e7bfdeb49a16b84d3ab1578 to your computer and use it in GitHub Desktop.

Select an option

Save up1/20ee6e9e7e7bfdeb49a16b84d3ab1578 to your computer and use it in GitHub Desktop.
Demo Fastlane for iOS app
desc "Creating a code signing certificate and provisioning profile"
lane :provision do
produce
cert
sigh(force: true)
end
desc "Runs all the tests and upload IPA to AppStore"
lane :all do
scan
snapshot
gym
deliver(force: true)
end
desc "Submit a new Beta Build to Apple TestFlight"
lane :beta do
gym(scheme: "01-Calculator")
pilot
end
desc "Deploy a new version to the App Store"
lane :appstore do
gym(scheme: "01-Calculator")
deliver(force: true)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment