test/.drone.yml

61 lines
1.2 KiB
YAML
Raw Normal View History

2024-08-07 17:53:19 +08:00
kind: pipeline # 定义对象类型还有secret和signature两种类型
type: docker # 定义流水线类型还有kubernetes、exec、ssh等类型
name: filesystem-drone # 定义流水线名称
steps: # 定义流水线执行步骤,这些步骤将顺序执行
2024-08-08 09:43:22 +08:00
- name: font-build
image: node:16.20.2
volumes:
- name: build-font
path: /build/dist-prod
commands:
- cd yudao-admin-vue3
- npm install --registry=https://registry.npmmirror.com/
- npm run build:prod
- ls
- cp -r dist-prod/. /build/dist-prod
- cd ..
2024-07-31 15:51:03 +08:00
2024-08-07 17:53:19 +08:00
2024-08-07 21:30:42 +08:00
- name: copy package
2024-08-07 17:53:19 +08:00
image: appleboy/drone-ssh # SSH工具镜像
settings:
host: 101.43.112.107 # 远程连接地址
username: root # 远程连接账号
password:
from_secret: ssh_password # 从Secret中读取SSH密码
port: 22 # 远程连接端口
command_timeout: 5m # 远程执行命令超时时间
script:
2024-08-08 09:43:22 +08:00
- scp -r /zymail/font/dist-prod root@1.14.205.126:/root/zyEjmall/zyEj-admin-vue3
2024-08-07 21:25:00 +08:00
2024-08-07 17:53:19 +08:00
2024-07-31 15:51:03 +08:00
volumes: # 定义流水线挂载目录,用于共享数据
2024-08-07 17:53:19 +08:00
2024-08-08 09:43:22 +08:00
- name: build-font
2024-07-31 15:51:03 +08:00
host:
2024-08-08 09:43:22 +08:00
path: /zymail/font/dist-prod # 从宿主机中挂载的目录