fix: add necessary args (#2)
This commit is contained in:
parent
cc2cd8ea68
commit
ec414c9864
@ -3,6 +3,7 @@ source('https://rubygems.org')
|
||||
gemspec
|
||||
|
||||
gem 'json'
|
||||
gem "cocoapods"
|
||||
|
||||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
||||
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|
||||
|
@ -31,13 +31,19 @@ module Fastlane
|
||||
in_house: false
|
||||
)
|
||||
|
||||
# Increment build number for latest TestFlight build
|
||||
Actions::IncrementBuildNumberAction.run(
|
||||
build_number: Actions::LatestTestflightBuildNumberAction.run(
|
||||
last_testflight_build_number =
|
||||
Actions::LatestTestflightBuildNumberAction.run(
|
||||
api_key: api_key,
|
||||
team_id: "118579280",
|
||||
team_name: "Jagger & Lewis"
|
||||
) + 1,
|
||||
team_name: "Jagger & Lewis",
|
||||
platform: 'ios',
|
||||
app_identifier: creds['developer_app_identifier'].to_s,
|
||||
username: "leonmalo@sfr.fr"
|
||||
) + 1
|
||||
|
||||
# Increment build number for latest TestFlight build
|
||||
Actions::IncrementBuildNumberAction.run(
|
||||
build_number: last_testflight_build_number + 1,
|
||||
xcodeproj: "Runner.xcodeproj"
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user