@ -99,6 +99,8 @@ These parameters control the commands executed on the remote host and related be
| curl_insecure | Allow curl to connect to SSL sites without certificates | false |
| curl_insecure | Allow curl to connect to SSL sites without certificates | false |
| capture_stdout | Capture standard output from commands as action output | false |
| capture_stdout | Capture standard output from commands as action output | false |
| version | drone-ssh binary version. If not specified, the latest version will be used. | |
| version | drone-ssh binary version. If not specified, the latest version will be used. | |
| retry_attempts | Number of retries after an SSH connection failure | 0 |
| retry_delay | Delay between retry attempts | 0s |
---
---
@ -309,6 +311,22 @@ This section covers common and advanced usage patterns, including multi-host, pr
script_path: scripts/script.sh
script_path: scripts/script.sh
```
```
### Retry SSH connection failures
Use `retry_attempts` to retry transient SSH connection failures, such as `dial tcp ...: i/o timeout`. Retries are disabled by default. Remote command failures are not retried.