Our project problem

This step will be an improvement on the previous chapters, whereby we replace the Fastfile's sigh and cert entries with the use of match.

You can either use the keyword match, or the alias sync_code_signing, interchangeably. For instance: sync_code_signing(type: "development", readonly: true)

Edit the Fastfile, adding the following to automatically fetch the latest code signing certificates:

…
lane :beta do
    register_devices(devices_file: "devices.txt")
    match(git_url: "https://bitbucket.org/YOUR_TEAM/YOUR_PROJECT",
      type: "development",
      app_identifier: "com.yourname.firefox")
          # gym
    # sh "your_script.sh"
    # You can also use other beta testing services here (run `fastlane actions`)
  end
…

We will be adding gym (https://docs.fastlane.tools/actions/gym ...

Get Continuous Delivery for Mobile with fastlane now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.