如何使用Fastlane将p12文件存储在Git存储库中?

时间:2017-06-07 13:23:26

标签: git apple-push-notifications fastlane fastlane-match

我使用Fastlane Match来管理iOS上的证书和配置。 这个工具非常酷,我想激励我管理我的推送通知证书和p12。

我正在使用pem创建p12文件,我想在我的git仓库中将其与其他证书一起存储。

我不知道该怎么做:

  • 创建自己的快速文件?
  • 创建我自己的fastlane插件?

1 个答案:

答案 0 :(得分:0)

要创建Fastfile,您可以从项目目录运行fastlane init。要创建fastlane plug_in,您可以从项目目录中运行fastlane new_plugin

Here are instructions to create a new plugin

Here are instructions to set up your project for fastlane