Last active
July 2, 2019 08:13
-
-
Save Osein/5546b6f78af3820d3305deebb8ae18b1 to your computer and use it in GitHub Desktop.
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
| lane :matchPopulateJenkinsKeychain do | |
| register_devices(devices_file: "./fastlane/devices.txt") | |
| match( | |
| type: "adhoc", | |
| app_identifier: [ | |
| "my.app.identifier" | |
| ] | |
| ) | |
| match( | |
| type: "development", | |
| app_identifier: [ | |
| "my.app.identifier" | |
| ] | |
| ) | |
| match( | |
| type: "appstore", | |
| app_identifier: [ | |
| "my.app.identifier" | |
| ] | |
| ) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment