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