Update README.md to clarify positional argument usage for notarytool keychain profile

This commit is contained in:
2026-01-22 15:39:51 +09:00
parent 010e18ba91
commit 0ac4c93a4e

View File

@@ -40,8 +40,9 @@ This repo includes `build/macos/build_sign_notarize.sh` to automate:
- Create a `notarytool` keychain profile (recommended) so you dont have to pass secrets on the command line: - Create a `notarytool` keychain profile (recommended) so you dont have to pass secrets on the command line:
```bash ```bash
xcrun notarytool store-credentials \ # NOTE: <profile-name> is a positional argument (not a flag).
--keychain-profile "<profile-name>" \ # Pick any name you want, e.g. "strawberry-notary".
xcrun notarytool store-credentials "<profile-name>" \
--apple-id "<your-apple-id>" \ --apple-id "<your-apple-id>" \
--team-id "<TEAMID>" \ --team-id "<TEAMID>" \
--password "<app-specific-password>" --password "<app-specific-password>"