如何在 fastlane 文件中写注释

How to write comment in fastlane file

我试图在我的 fastline 中评论一些行,但我不确定如何在 fastlane 文件中写评论。我也不想删除这些行。

这是我的想法:

  build(variant: 'Release')
    appcenter_upload(
      api_token: ENV['APPCENTER_API_TOKEN'],
      owner_name: "Ralali.com",
      app_name: "Ralali-Android",
      apk: "android/app/build/outputs/apk/release/app-release.apk",
      destinations: "Production",
      # destination_type: "group",   IS THIS LINE COMMENTED? (WON'T EXECUTED?)
      # notify_testers: true         AND ALSO THIS ONE
    )

我 运行 在生产中使用 circleci 的 fastlane,我不想在生产中尝试,因为我害怕。

单行注释使用#,多行注释使用=begin ... =end。另外,请注意 =begin 和 =end 必须在行的开头或 这将是一个语法错误。

# Single-line comment

=begin
Multi-line
comment
=end