Fastlane不通过电子邮件发送我的内部测试人员进行testflight

问题描述:

对于我而言,我无法找到将我的应用商店上传到电子邮件/通知我的测试人员的信息。任何帮助将不胜感激。Fastlane不通过电子邮件发送我的内部测试人员进行testflight

以下是我的FastFile中的内容。

lane :deploytest do 
gym(scheme: "Target_AppStore") # Build your app - more options available 

# fixes firewall issue 
ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV" 
pilot(
    #You can also skip the submission of the binary, which means, the ipa file will only be uploaded and not distributed to testers: 
    skip_submission: false, 
) 

# sh "your_script.sh" 
# You can also use other beta testing services here (run `fastlane actions`) 
end 

我是白痴

pilot(
    #You can also skip the submission of the binary, which means, the ipa file will only be uploaded and not distributed to testers: 
    skip_submission: false, 
    distribute_external: false, #this needed to be added for internal builds 
)