如何手动将现有配置文件和证书添加到fastlane匹配?

时间:2016-05-01 05:41:56

标签: fastlane fastlane-match

我在产品中有大量现有应用,我想在fastlane匹配中使用现有的配置文件和证书。

据我所知,fastlane匹配只能与首先创建的配置文件和证书一起使用,但我不愿按照建议“核对”。

这可能吗?

我想知道我是否以匹配的形式手动添加到Git仓库中,预计这是否足够。

2 个答案:

答案 0 :(得分:3)

有一本手册介绍了如何在http://macoscope.com/blog/simplify-your-life-with-fastlane-match/#migration

手动添加配置文件和证书

答案 1 :(得分:2)

从fastlane 2.128.0开始,您现在可以导入证书

fastlane match import \
    --username email@email.com \
    --git_url https://github.com/your_org/match_repo \
    --app_identifier com.your.app \
    --team_name "Your Team" \
    --type appstore

个人资料即将推出

enter image description here

相关问题