-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78bda09
commit bd8010a
Showing
2 changed files
with
33 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,10 +23,6 @@ platform :ios do | |
duration: 1200, # optional | ||
in_house: false, # optional but may be required if using match/sigh | ||
) | ||
|
||
upload_symbols_to_crashlytics( | ||
dsym_path: './Rainbow.app.dSYM.zip' | ||
) | ||
end | ||
|
||
desc "Submit a new Beta build to Apple TestFlight" | ||
|
@@ -92,21 +88,32 @@ platform :ios do | |
) | ||
|
||
match( | ||
username: ENV["FASTLANE_USER"], | ||
force: true, | ||
type: "adhoc", | ||
app_identifier: ["me.rainbow", "me.rainbow.PriceWidget", "me.rainbow.SelectTokenIntent", "me.rainbow.ImageNotification", "me.rainbow.OpenInRainbow", "me.rainbow.ShareWithRainbow"], | ||
git_url: "[email protected]:rainbow-me/rainbow-code-signing.git", | ||
) | ||
|
||
xcversion(version: "15.3") | ||
|
||
gym( | ||
workspace: "Rainbow.xcworkspace", | ||
scheme: "Rainbow", | ||
include_symbols: false, | ||
export_method: "ad-hoc", | ||
output_directory: "build", | ||
output_name: "Rainbow.ipa", | ||
archive_path: "build/Rainbow.xcarchive" | ||
archive_path: "build/Rainbow.xcarchive", | ||
export_options: { | ||
provisioningProfiles: { | ||
"me.rainbow" => "match AdHoc me.rainbow", | ||
"me.rainbow.PriceWidget" => "match AdHoc me.rainbow.PriceWidget", | ||
"me.rainbow.SelectTokenIntent" => "match AdHoc me.rainbow.SelectTokenIntent", | ||
"me.rainbow.ImageNotification" => "match AdHoc me.rainbow.ImageNotification", | ||
"me.rainbow.OpenInRainbow" => "match AdHoc me.rainbow.OpenInRainbow", | ||
"me.rainbow.ShareWithRainbow" => "match AdHoc me.rainbow.ShareWithRainbow", | ||
}, | ||
} | ||
) | ||
|
||
end | ||
|