1- ---
2- name : |
3- Activate SSH key (RSA private key)
4- description : |
1+ title : Activate SSH key (RSA private key)
2+ summary : Activate SSH key (RSA private key)
3+ description : |-
54 Saves the provided **RSA private SSH key** to file
65 and then loads it into the user's ssh-agent with `ssh-add`.
76
@@ -12,25 +11,39 @@ description: |
1211
1312 It will start the ssh-agent if it can't connect to the agent.
1413website : https://github.com/bitrise-io/steps-activate-ssh-key
15- source :
16- git : https://github.com/bitrise-io/steps-activate-ssh-key.git
14+ source_code_url : https://github.com/bitrise-io/steps-activate-ssh-key
15+ support_url : https://github.com/bitrise-io/steps-activate-ssh-key/issues
1716host_os_tags :
1817 - osx-10.9
18+ project_type_tags :
19+ - ios
1920type_tags :
2021 - ssh
2122requires_admin_user : false
22-
23+ is_always_run : false
24+ is_skippable : false
25+ run_if : " .IsCI"
2326inputs :
24- - title : |
25- SSH private key in RSA format
26- mapped_to: SSH_RSA_PRIVATE_KEY
27- is_expand: false
28- - title : |
29- (Optional) path to save the private key. Default is: $HOME/.ssh/steplib_ssh_step_id_rsa
30- mapped_to: SSH_KEY_SAVE_PATH
31- is_expand: true
32- - title : |
33- (Optional) Remove other, previously loaded keys and restart ssh-agent?
34- Options: true and false. Default: true.
35- mapped_to: IS_REMOVE_OTHER_IDENTITIES
36- is_expand: false
27+ - ssh_rsa_private_key : " $SSH_RSA_PRIVATE_KEY"
28+ opts :
29+ title : SSH private key in RSA format
30+ is_expand : true
31+ is_dont_change_value : true
32+ - ssh_key_save_path : " $HOME/.ssh/bitrise_step_activate_ssh_key"
33+ opts :
34+ title : |-
35+ (Optional) path to save the private key. Default is: $HOME/.ssh/steplib_ssh_step_id_rsa
36+ is_expand : true
37+ is_dont_change_value : true
38+ - is_remove_other_identities : " true"
39+ opts :
40+ description : |-
41+ (Optional) Remove other, previously loaded keys and restart ssh-agent?
42+
43+ Options:
44+
45+ * "true"
46+ * "false"
47+ is_expand : false
48+ value_options : ["true", "false"]
49+ is_dont_change_value : true
0 commit comments