Compare commits

...

2 Commits

Author SHA1 Message Date
f7194d1987 构建vue 2024-10-30 14:08:15 +08:00
75cb7343dc Merge pull request 'xinwei' (#7) from xinwei into master
Reviewed-on: #7
2024-10-29 16:59:10 +08:00

View File

@ -1,45 +1,56 @@
kind: pipeline kind: pipeline # 定义对象类型还有secret和signature两种类型
type: docker
name: ludu-admin-vue3
steps: type: docker # 定义流水线类型还有kubernetes、exec、ssh等类型
# - name: build
# image: node:18.18.0 name: filesystem-drone # 定义流水线名称
# volumes:
# - name: build-file clone:
# path: /build/dist disable: true
# commands: steps: # 定义流水线执行步骤,这些步骤将顺序执行
# - npm install --registry=https://registry.npmmirror.com/
# - npm run build:prod - name: build-copy-vue
# - cp -r dist-prod/. /build/dist
- name: remote_transmit
image: appleboy/drone-ssh # SSH工具镜像 image: appleboy/drone-ssh # SSH工具镜像
settings: settings:
host: 101.43.112.107 # 远程连接地址 host: 101.43.112.107 # 远程连接地址
username: root # 远程连接账号 username: root # 远程连接账号
password: password:
from_secret: ssh_password # 从Secret中读取SSH密码 from_secret: ssh_password
port: 22 # 远程连接端口 port: 22 # 远程连接端口
command_timeout: 20m # 远程执行命令超时时间
command_timeout: 5m # 远程执行命令超时时间
script: script:
- rm -rf ludu-admin-vue3 - ssh root@47.118.40.3 "sh -c 'cd /build_project/ludu-admin-vue3 && git pull origin master && /usr/bin/pnpm install && /usr/bin/pnpm run build:prod && zip -r pc.zip pc'"
- git clone http://101.43.112.107:3000/root/ludu-admin-vue3.git - scp root@47.118.40.3:/build_project/ludu-admin-vue3/pc.zip /build_package/
- cd ludu-admin-vue3 - scp /build_package/pc.zip root@121.36.203.133:/build_package/
- npm install --registry=https://registry.npmmirror.com/ - name: build-vue
- npm run build:prod
- cp -r dist-prod/. /lundu-build/font image: appleboy/drone-ssh # SSH工具镜像
- scp -r /lundu-build/font/. root@120.46.37.243:/root/buildIndex
settings:
# volumes: # 定义流水线挂载目录,用于共享数据
# - name: build-file host: 121.36.203.133 # 远程连接地址
# host:
# path: /mydata/buildIndex # 从宿主机中挂载的目录 username: root # 远程连接账号
password:
from_secret: ssh_password2 # 从Secret中读取SSH密码
port: 22 # 远程连接端口
command_timeout: 30m # 远程执行命令超时时间
script:
- echo "build-vue......"
- cd /build_package
- rm -rf pc
- unzip pc.zip
- rm -rf /nginx/html/pc
- mv pc /nginx/html/pc