2024-08-22 17:14:13 +08:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: microservice-build
|
2024-08-08 09:43:22 +08:00
|
|
|
|
2024-09-10 11:11:52 +08:00
|
|
|
clone:
|
|
|
|
disable: true
|
2024-08-22 17:14:13 +08:00
|
|
|
steps:
|
2024-10-28 10:34:13 +08:00
|
|
|
- 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 /
|