diff --git a/packages/shorebird_cli/lib/src/commands/release/release_command.dart b/packages/shorebird_cli/lib/src/commands/release/release_command.dart index 9d192d1f..728db84b 100644 --- a/packages/shorebird_cli/lib/src/commands/release/release_command.dart +++ b/packages/shorebird_cli/lib/src/commands/release/release_command.dart @@ -63,6 +63,16 @@ On Xcode builds it is used as "CFBundleVersion".''', help: '''Export an IPA with these options. See "xcodebuild -h" for available exportOptionsPlist keys (iOS only).''', ) + ..addOption( + exportMethodArgName, + defaultsTo: ExportMethod.appStore.argName, + allowed: ExportMethod.values.map((e) => e.argName), + help: 'Specify how the IPA will be distributed.', + allowedHelp: { + for (final method in ExportMethod.values) + method.argName: method.description, + }, + ) ..addOption( 'flutter-version', help: 'The Flutter version to use when building the app (e.g: 3.16.3).',