Skip to content

Commit

Permalink
Minor cleanup of Fastfile and Matchfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Harold committed Apr 25, 2016
1 parent c12e021 commit d755979
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
12 changes: 0 additions & 12 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,33 +56,21 @@ platform :ios do
desc "Match Development"
lane :match_development do
match(
app_identifier: ENV["APP_IDENTIFIER"],
team_name: ENV['ITC_TEAM_NAME'],
git_url: ENV['GIT_URL_CERTIFICATES'],
type: 'development',
username: ENV['CERT_USERNAME'],
)
end

desc "Match Adhoc"
lane :match_adhoc do
match(
app_identifier: ENV["APP_IDENTIFIER"],
team_name: ENV['ITC_TEAM_NAME'],
git_url: ENV['GIT_URL_CERTIFICATES'],
type: 'adhoc',
username: ENV['CERT_USERNAME'],
)
end

desc "Match Appstore"
lane :match_appstore do
match(
app_identifier: ENV["APP_IDENTIFIER"],
team_name: ENV['ITC_TEAM_NAME'],
git_url: ENV['GIT_URL_CERTIFICATES'],
type: 'appstore',
username: ENV['CERT_USERNAME'],
)
end

Expand Down
4 changes: 4 additions & 0 deletions fastlane/Matchfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
app_identifier ENV["APP_IDENTIFIER"]
team_name ENV['ITC_TEAM_NAME']
git_url ENV['GIT_URL_CERTIFICATES']
username ENV['CERT_USERNAME']

0 comments on commit d755979

Please sign in to comment.