cd: 修改drone build配置
This commit is contained in:
parent
1d1574edcc
commit
cca91ce48e
71
.drone.yml
71
.drone.yml
|
@ -1,7 +1,49 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: admin & web 资源发布
|
||||
name: admin 资源发布
|
||||
|
||||
volumes:
|
||||
- name: node_modules
|
||||
host:
|
||||
path: /home/drone/cache/node_modules
|
||||
|
||||
steps:
|
||||
# admin管理
|
||||
- name: build-admin
|
||||
image: node:16.19-alpine
|
||||
volumes:
|
||||
- name: node_modules
|
||||
path: /drone/src/node_modules
|
||||
commands:
|
||||
- pwd
|
||||
- node -v
|
||||
- npm -v
|
||||
- npm install -g pnpm
|
||||
- pnpm i
|
||||
- pnpm build:admin
|
||||
|
||||
- name: deploy-admin
|
||||
image: appleboy/drone-scp:1.6
|
||||
settings:
|
||||
host:
|
||||
- backset.cn
|
||||
username: root
|
||||
password: cr654654.
|
||||
port: 22
|
||||
overwrite: true
|
||||
command_timeout: 2m
|
||||
target: /www/wwwroot/nginx/html/backset.cn/
|
||||
source: ./apps/admin/dist/*
|
||||
|
||||
trigger:
|
||||
branch:
|
||||
- release/**
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: web 资源发布
|
||||
|
||||
volumes:
|
||||
- name: node_modules
|
||||
|
@ -37,33 +79,6 @@ steps:
|
|||
target: /www/wwwroot/nginx/html/backset.cn/
|
||||
source: ./apps/web/dist/*
|
||||
|
||||
# admin管理
|
||||
- name: build-admin
|
||||
image: node:16.19-alpine
|
||||
volumes:
|
||||
- name: node_modules
|
||||
path: /drone/src/node_modules
|
||||
commands:
|
||||
- pwd
|
||||
- node -v
|
||||
- npm -v
|
||||
- npm install -g pnpm
|
||||
- pnpm i
|
||||
- pnpm build:admin
|
||||
|
||||
- name: deploy-admin
|
||||
image: appleboy/drone-scp:1.6
|
||||
settings:
|
||||
host:
|
||||
- backset.cn
|
||||
username: root
|
||||
password: cr654654.
|
||||
port: 22
|
||||
overwrite: true
|
||||
command_timeout: 2m
|
||||
target: /www/wwwroot/nginx/html/backset.cn/
|
||||
source: ./apps/admin/dist/*
|
||||
|
||||
trigger:
|
||||
branch:
|
||||
- release/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user