I used a third-party tool called Fastlane - it allows you to upload release notes with a single command.
You can keep your "What's New" texts in plain .txt files and push all translations at once with just one command.
lane :update_release_notes do
deliver(
metadata_path: "./fastlane/metadata", # points to your local metadata
skip_binary_upload: true, # don’t upload any .ipa/pkg
skip_screenshots: true, # don’t upload screenshots
skip_app_version_update: true, # (optional) leave version untouched
force: true # skip the HTML report step
)
end
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags: