1

可以fastlane match [environment](不使用 --readonly 标志)可能撤销证书,还是仅配置配置文件受到影响?我查看了官方文档,但我不清楚证书是否受此命令影响。

我不想在 Apple 开发者中心撤销我们现有的任何证书,因为我们有多个企业应用程序同时使用它们。

4

1 回答 1

2

单独运行该fastlane match [environment]命令不会撤销您的任何证书。

您必须添加nuke到命令中才能撤销证书和配置文件。

以下代码取自此处

 command "nuke" do |c|
    # We have this empty command here, since otherwise the normal `match` command will be executed
    c.syntax = "fastlane match nuke"
    c.description = "Delete all certificates and provisioning profiles from the Apple Dev Portal"
    c.action do |args, options|
      FastlaneCore::UI.user_error!("Please run `fastlane match nuke [type], allowed values: development, distribution and enterprise. For the 'adhoc' type, please use 'distribution' instead.")
    end
  end

  ["development", "distribution", "enterprise"].each do |type|
    command "nuke #{type}" do |c|
      c.syntax = "fastlane match nuke #{type}"
      c.description = "Delete all certificates and provisioning profiles from the Apple Dev Portal of the type #{type}"

      FastlaneCore::CommanderGenerator.new.generate(Match::Options.available_options, command: c)

      c.action do |args, options|
        params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
        params.load_configuration_file("Matchfile")
        Match::Nuke.new.run(params, type: type.to_s)
      end
    end
  end

nuke论点记录在您在答案中链接到的页面上。

您还可以nuke通过其源文件查看参数的作用,在此处找到

于 2019-02-19T21:12:15.750 回答