LoginSignup
1
0

More than 3 years have passed since last update.

Fastlaneのactionにパラメータを渡す

Posted at

Fastlaneのactionにパラメータを渡す方法を備忘録メモ

渡し方

fastlane dp update:false version_code:1

受け取り方

適当にスラックにログを送ってみる

lane :dp do |options|
  # ...
  if options[:update]
      slack(
        message: "version code #{options[:version_code]}",
      )
  end
end
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0