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
| platform :ios do | |
| desc "Get certificates" | |
| lane :certificates do | |
| sync_code_signing( | |
| type: "development", | |
| app_identifier: ['com.company.example', 'com.company.example.stg'], | |
| force_for_new_devices: true, | |
| readonly: true | |
| ) |
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
| platform :ios do | |
| # ... here comes the lanes we've created earlier | |
| desc "deploy" | |
| lane :deploy do | |
| setup_ci | |
| sync_code_signing( | |
| type: "appstore", | |
| app_identifier: 'com.company.example', | |
| readonly: true |
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
| team_name "Your company's team name" | |
| team_id "Your company's team id" | |
| itc_team_id "Your company's Appstore connect id" | |
| itc_team_name "Your company's team name" |
OlderNewer