Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs for set_changelog action #10368

Merged
merged 2 commits into from
Sep 25, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions fastlane/lib/fastlane/actions/set_changelog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ def self.description
def self.details
[
"This is useful if you have only one changelog for all languages.",
"You can store the changelog in `#{default_changelog_path}` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same \"What's new\"-text for all languages."
"You can store the changelog in `#{default_changelog_path}` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same \"What's new\"-text for all languages.",
"Defining the version is optional, fastlane will try to automatically detect it if you don't provide one"
].join("\n")
end

Expand Down Expand Up @@ -140,7 +141,8 @@ def self.is_supported?(platform)

def self.example_code
[
'set_changelog(app_identifier: "com.krausefx.app", version: "1.0", changelog: "All Languages")'
'set_changelog(changelog: "Changelog for all Languages")',
'set_changelog(app_identifier: "com.krausefx.app", version: "1.0", changelog: "Changelog for all Languages")'
]
end

Expand Down