XinWei
9174dae72a
Some checks reported errors
continuous-integration/drone Build encountered an error
27 lines
475 B
YAML
27 lines
475 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: microservice-build
|
|
|
|
clone:
|
|
disable: true
|
|
steps:
|
|
- name: test-build
|
|
|
|
image: appleboy/drone-ssh # SSH工具镜像
|
|
|
|
settings:
|
|
|
|
host: 47.118.40.3 # 远程连接地址
|
|
|
|
username: root # 远程连接账号
|
|
|
|
private_key:
|
|
|
|
from_secret: ssh_private_key # 从Secret中读取SSH密码
|
|
|
|
port: 22 # 远程连接端口
|
|
|
|
command_timeout: 20m # 远程执行命令超时时间
|
|
|
|
script:
|
|
- ls / |