构建vue
This commit is contained in:
parent
75cb7343dc
commit
f7194d1987
67
.drone.yml
67
.drone.yml
@ -1,21 +1,17 @@
|
|||||||
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
|
|
||||||
# volumes:
|
|
||||||
# - name: build-file
|
|
||||||
# path: /build/dist
|
|
||||||
# commands:
|
|
||||||
# - npm install --registry=https://registry.npmmirror.com/
|
|
||||||
# - npm run build:prod
|
|
||||||
# - cp -r dist-prod/. /build/dist
|
|
||||||
|
|
||||||
- name: remote_transmit
|
name: filesystem-drone # 定义流水线名称
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
steps: # 定义流水线执行步骤,这些步骤将顺序执行
|
||||||
|
|
||||||
|
- name: build-copy-vue
|
||||||
|
|
||||||
image: appleboy/drone-ssh # SSH工具镜像
|
image: appleboy/drone-ssh # SSH工具镜像
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
|
|
||||||
host: 101.43.112.107 # 远程连接地址
|
host: 101.43.112.107 # 远程连接地址
|
||||||
@ -24,22 +20,37 @@ steps:
|
|||||||
|
|
||||||
password:
|
password:
|
||||||
|
|
||||||
from_secret: ssh_password # 从Secret中读取SSH密码
|
from_secret: ssh_password
|
||||||
|
|
||||||
|
port: 22 # 远程连接端口
|
||||||
|
command_timeout: 20m # 远程执行命令超时时间
|
||||||
|
|
||||||
|
script:
|
||||||
|
- 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'"
|
||||||
|
- scp root@47.118.40.3:/build_project/ludu-admin-vue3/pc.zip /build_package/
|
||||||
|
- scp /build_package/pc.zip root@121.36.203.133:/build_package/
|
||||||
|
- name: build-vue
|
||||||
|
|
||||||
|
image: appleboy/drone-ssh # SSH工具镜像
|
||||||
|
|
||||||
|
settings:
|
||||||
|
|
||||||
|
host: 121.36.203.133 # 远程连接地址
|
||||||
|
|
||||||
|
username: root # 远程连接账号
|
||||||
|
|
||||||
|
password:
|
||||||
|
|
||||||
|
from_secret: ssh_password2 # 从Secret中读取SSH密码
|
||||||
|
|
||||||
port: 22 # 远程连接端口
|
port: 22 # 远程连接端口
|
||||||
|
|
||||||
command_timeout: 5m # 远程执行命令超时时间
|
command_timeout: 30m # 远程执行命令超时时间
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- rm -rf ludu-admin-vue3
|
- echo "build-vue......"
|
||||||
- git clone http://101.43.112.107:3000/root/ludu-admin-vue3.git
|
- cd /build_package
|
||||||
- cd ludu-admin-vue3
|
- rm -rf pc
|
||||||
- npm install --registry=https://registry.npmmirror.com/
|
- unzip pc.zip
|
||||||
- npm run build:prod
|
- rm -rf /nginx/html/pc
|
||||||
- cp -r dist-prod/. /lundu-build/font
|
- mv pc /nginx/html/pc
|
||||||
- scp -r /lundu-build/font/. root@120.46.37.243:/root/buildIndex
|
|
||||||
|
|
||||||
# volumes: # 定义流水线挂载目录,用于共享数据
|
|
||||||
# - name: build-file
|
|
||||||
# host:
|
|
||||||
# path: /mydata/buildIndex # 从宿主机中挂载的目录
|
|
||||||
|
Loading…
Reference in New Issue
Block a user