File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,9 @@ Please note that this action is compatible with `dokku >= 0.11.6`.
5959 -----END OPENSSH PRIVATE KEY-----
6060 ```
6161
62+ - `ssh_passphrase`: (_optional_) Passphrase to use when interacting with an SSH key that has a passphrase
63+ - example value: `password`
64+
6265- `trace`: (_optional_) Allows users to debug what the action is performing by enabling shell trace mode
6366 - example value: `1`
6467
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ inputs:
5252 ssh_private_key :
5353 description : " A private SSH key that has push access to your Dokku instance"
5454 required : true
55+ ssh_passphrase :
56+ description : " Passphrase to use when interacting with an SSH key that has a passphrase"
57+ required : false
58+ default : " "
5559 trace :
5660 description : " Allows users to debug what the action is performing by enabling shell trace mode"
5761 required : false
7579 REVIEW_APP_NAME : ${{ inputs.review_app_name }}
7680 SSH_HOST_KEY : ${{ inputs.ssh_host_key }}
7781 SSH_PRIVATE_KEY : ${{ inputs.ssh_private_key }}
82+ SSH_PASSPHRASE : ${{ inputs.ssh_passphrase }}
7883 TRACE : ${{ inputs.trace }}
You can’t perform that action at this time.
0 commit comments