Last active
April 2, 2016 11:04
-
-
Save up1/20ee6e9e7e7bfdeb49a16b84d3ab1578 to your computer and use it in GitHub Desktop.
Demo Fastlane for iOS app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| desc "Creating a code signing certificate and provisioning profile" | |
| lane :provision do | |
| produce | |
| cert | |
| sigh(force: true) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| desc "Runs all the tests and upload IPA to AppStore" | |
| lane :all do | |
| scan | |
| snapshot | |
| gym | |
| deliver(force: true) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| desc "Submit a new Beta Build to Apple TestFlight" | |
| lane :beta do | |
| gym(scheme: "01-Calculator") | |
| pilot | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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