【发布时间】:2020-02-07 12:20:23
【问题描述】:
我的Appfile 目前看起来像这样:
apple_id "myappid@domain.com"
app_identifier "com.xxx.xxx"
ENV["FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD"] = "xxxx-xxxx-xxxx-xxxx"
ENV["FASTLANE_PASSWORD"] = "myAppIdPassword"
ENV["DELIVER_USER"] = "myappid@domain.com"
ENV["FASTLANE_USER"] = "myappid@domain.com"
ENV["FASTLANE_TEAM_ID"] = "myTeamId"
我有这样的Fastfile:
default_platform(:ios)
platform :ios do
desc "Description of what the lane does"
lane :qa do
increment_build_number
build_app(
clean: true
)
verify_build(
bundle_identifier: "com.xxx.xxx.project-name"
)
upload_to_testflight(skip_submission: true)
end
end
发生的情况是,当我从控制台运行此程序时,fastlane 不会从应用程序文件中读取,它会询问我有关登录信息的信息。此外,我的苹果 ID 启用了两个因素身份验证,并且我创建了应用程序特定密码,从 Appfile 中可以看到,但它仍然不起作用。看起来 Appfile 没有被解析,或者我使用了错误的语法?我是这样的:
[15:22:51]: ----------------------------------
[15:22:51]: --- Step: upload_to_testflight ---
[15:22:51]: ----------------------------------
[15:22:51]: To not be asked about this value, you can specify it using 'username'
/Users/admin/.rbenv/versions/2.7.0/lib/ruby/gems/2.7.0/gems/highline-1.7.10/lib/highline.rb:624: warning: Using the last argument as keyword parameters is deprecated
[15:22:51]: Your Apple ID Username:
我不必在终端提示中手动输入任何内容的方式是什么?
编辑:
也许这很重要...我的 Apple ID 启用了两个因素身份验证。但我认为它足够使用:FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD
【问题讨论】:
标签: ios swift xcode continuous-integration fastlane