You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ You can also run this step directly with [Bitrise CLI](https://github.com/bitris
86
86
|`register_test_devices`| If this input is set, the Step will register the known test devices on Bitrise from team members with the Apple Developer Portal. Note that setting this to yes may cause devices to be registered against your limited quantity of test devices in the Apple Developer Portal, which can only be removed once annually during your renewal window. | required |`no`|
87
87
|`min_profile_validity`| If this input is set to >0, the managed Provisioning Profile will be renewed if it expires within the configured number of days. Otherwise the Step renews the managed Provisioning Profile if it is expired. | required |`0`|
88
88
|`certificate_url_list`| URL of the code signing certificate to download. Multiple URLs can be specified, separated by a pipe (`\|`) character. Local file path can be specified, using the `file://` URL scheme. | required, sensitive |`$BITRISE_CERTIFICATE_URL`|
89
-
|`passphrase_list`| Passphrases for the provided code signing certificates. Specify as many passphrases as many Code signing certificate URL provided, separated by a pipe (`\|`) character. | required, sensitive |`$BITRISE_CERTIFICATE_PASSPHRASE`|
89
+
|`passphrase_list`| Passphrases for the provided code signing certificates. Specify as many passphrases as many Code signing certificate URL provided, separated by a pipe (`\|`) character. Certificates without a passphrase: for using a single certificate, leave this step input empty. For multiple certificates, use the separator as if there was a passphrase (examples: `pass\|`, `\|pass\|`, `\|`) | sensitive |`$BITRISE_CERTIFICATE_PASSPHRASE`|
90
90
|`keychain_path`| Path to the Keychain where the code signing certificates will be installed. | required |`$HOME/Library/Keychains/login.keychain`|
91
91
|`keychain_password`| Password for the provided Keychain. | required, sensitive |`$BITRISE_KEYCHAIN_PASSWORD`|
92
92
|`export_development_team`| The Developer Portal team to use for this export Defaults to the team used to build the archive. Defining this is also required when Automatic Code Signing is set to `apple-id` and the connected account belongs to multiple teams. |||
Copy file name to clipboardExpand all lines: step.yml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -241,7 +241,9 @@ inputs:
241
241
Passphrases for the provided code signing certificates.
242
242
243
243
Specify as many passphrases as many Code signing certificate URL provided, separated by a pipe (`|`) character.
244
-
is_required: true
244
+
245
+
Certificates without a passphrase: for using a single certificate, leave this step input empty. For multiple certificates, use the separator as if there was a passphrase (examples: `pass|`, `|pass|`, `|`)
246
+
is_required: false # A single cert with an empty passphrase is allowed too
0 commit comments