Interface NotaryToolKeychainCredentials

Options required for authenticating notarytool by storing credentials inside the system Keychain item.

You can store NotaryToolPasswordCredentials or NotaryToolApiKeyCredentials into the Keychain using xcrun notarytool store-credentials and access the stored secrets when signing your code.

interface NotaryToolKeychainCredentials {
    keychain?: string;
    keychainProfile: string;
}

Properties

keychain?: string

The name of the keychain or path to the keychain you stored notarization credentials in.

Default Value

If omitted, the system default login keychain will be used.

keychainProfile: string

The name of the profile you provided when storing notarization credentials.