diff --git a/.changes/fix-notarytool-args-apple-id.md b/.changes/fix-notarytool-args-apple-id.md new file mode 100644 index 000000000000..b0e6b02d99c9 --- /dev/null +++ b/.changes/fix-notarytool-args-apple-id.md @@ -0,0 +1,6 @@ +--- +'tauri-cli': 'patch:bug' +'@tauri-apps/cli': 'patch:bug' +--- + +On macOS, fix the `apple-id` option name when using `notarytools submit`. \ No newline at end of file diff --git a/tooling/bundler/src/bundle/macos/sign.rs b/tooling/bundler/src/bundle/macos/sign.rs index b2ab2f79d2ee..a08866ed94e8 100644 --- a/tooling/bundler/src/bundle/macos/sign.rs +++ b/tooling/bundler/src/bundle/macos/sign.rs @@ -358,7 +358,7 @@ impl NotarytoolCmdExt for Command { team_id, } => { self - .arg("--username") + .arg("--apple-id") .arg(apple_id) .arg("--password") .arg(password);