Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ Keys/values of the `notarization_info` dictionary:
| team_id | String | (see authentication) | The team identifier for the Developer Team, usually 10 alphanumeric characters |
| password | String | (see authentication) | 2FA app specific password. |
| keychain_profile | String | (see authentication) | App Store Connect API key issuer ID. |
| keychain | String | No | Keychain file containing `keychain_profile`. |
| asc_provider | String | No | Only needed when a user account is associated with multiple providers |
| primary_bundle_id | String | No | Defaults to `identifier`. Whether specified or not underscore characters are always automatically converted to hyphens since Apple notary service does not like underscores |
| staple_timeout | Integer | No | See paragraph bellow |
Expand Down
7 changes: 7 additions & 0 deletions munkipkg
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,13 @@ def add_authentication_options(cmd, build_info):
build_info['notarization_info']['keychain_profile']
]
)
if 'keychain' in build_info['notarization_info']:
cmd.extend(
[
'--keychain',
build_info['notarization_info']['keychain']
]
)
else:
raise MunkiPkgError(
"apple_id + team_id + password or keychain_profile "
Expand Down