before_allopen in new window

Description

This block will get executed before running the requested lane. It supports the same actions as lanes.

Usage


before_all do

  if is_ci

    setup_deployment(
      google_drive_certificate_subpath: "FitCheck/FitCheck_Distribution.p12"
    )

    cocoapods(
      repo_update: true
    )
  end

end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

"FitCheck/FitCheck_Distribution.p12"- folder FitCheck and certifiacte name FitCheck_Distribution.p12 on google driveopen in new window

Screenshot