我试图在我的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一起经营快车道,我不想因为害怕而不尝试生产。
使用#作为单行注释和=begin=结束多行注释。此外,请注意=begin和=end必须位于行的开头或这将是一个语法错误。
# Single-line comment
=begin
Multi-line
comment
=end