I have installed drone server and ssh-runner to try to create a folder using ssh but failed and an error like this appears:
my .drone.yml:
kind: pipeline
type: ssh
name: drone-ssh-test
clone:
disable: true
server:
host: 177.33.9.222
user:
from_secret: userSSH
password:
from_secret: passSSH
steps:
- name: greeting
commands:
- echo hello world
- mkdir test-drone
is there any more configuration needed?