From 598320821ed50fc725701936943e4aacb596e30b Mon Sep 17 00:00:00 2001 From: nilsreichardt Date: Tue, 12 Sep 2023 16:09:54 +0200 Subject: [PATCH] Fix adding changelog when deploying to Google Play Console --- .../lib/src/commands/src/deploy_android_command.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/sz_repo_cli/lib/src/commands/src/deploy_android_command.dart b/tools/sz_repo_cli/lib/src/commands/src/deploy_android_command.dart index 238617722..2f86262c0 100644 --- a/tools/sz_repo_cli/lib/src/commands/src/deploy_android_command.dart +++ b/tools/sz_repo_cli/lib/src/commands/src/deploy_android_command.dart @@ -52,7 +52,8 @@ class DeployAndroidCommand extends Command { static const flavorOptionName = 'flavor'; static const whatsNewOptionName = 'whats-new'; - static const _changelogDirectory = 'android/fastlane/metadata/android/de-DE'; + static const _changelogDirectory = + 'android/fastlane/metadata/android/de-DE/changelogs'; static const _defaultChangelogFileName = 'default.txt'; static const _changelogFilePath = '$_changelogDirectory/$_defaultChangelogFileName';