Files
jdt-aoshi/.drone.yml
YuanHuakk 96809c86c6
All checks were successful
continuous-integration/drone/push Build is passing
update nginx
2024-11-18 23:05:33 +08:00

155 lines
3.9 KiB
YAML

kind: pipeline
type: docker
name: default
steps:
- name: 测试服-依赖安装&&编译打包
pull: if-not-exists
image: node:20
when:
branch:
- test
commands:
- npm config set registry https://registry.npmmirror.com/
- npm install -g pnpm
- pnpm install
- pnpm build:h5:test
- rm -rf dist.tar
- rm -rf node_modules
- tar -zcvf dist.tar ./dist ./default.conf ./Dockerfile
- name: 正式服-依赖安装&&编译打包
pull: if-not-exists
image: node:20
when:
branch:
- master
commands:
- npm config set registry https://registry.npmmirror.com/
- npm install -g pnpm
- pnpm install
- pnpm build:h5
- rm -rf dist.tar
- rm -rf node_modules
- tar -zcvf dist.tar ./dist ./default.conf ./Dockerfile
- name: 测试服-产物上传
pull: if-not-exists
image: appleboy/drone-scp
when:
branch:
- test
settings:
host:
from_secret: HOST_DEV
username:
from_secret: USER_DEV
password:
from_secret: PWD_DEV
port: 22
strip_components: 1
target: /www/builder
source:
- ./dist.tar
- name: 测试服-部署
pull: if-not-exists
image: appleboy/drone-ssh
when:
branch:
- test
settings:
host:
from_secret: HOST_DEV
username:
from_secret: USER_DEV
password:
from_secret: PWD_DEV
port: 22
script:
- cd /www/builder
- mkdir jdt-aoshi-dev
- tar -xzvf dist.tar -C /www/builder/jdt-aoshi-dev
- rm -rf dist.tar
- cd jdt-aoshi-dev
- docker build -t jdt-aoshi-dev .
- docker stop jdt-aoshi-dev
- docker rm jdt-aoshi-dev
- docker run -d -p 5000:80 --restart=always --name jdt-aoshi-dev jdt-aoshi-dev
- cd ..
- rm -rf jdt-aoshi-dev
- name: 正式服-产物上传
pull: if-not-exists
image: appleboy/drone-scp
when:
branch:
- master
settings:
host:
from_secret: HOST_PROD
username:
from_secret: USER_PROD
password:
from_secret: PWD_PROD
port: 22
strip_components: 1
target: /www/builder
source:
- ./dist.tar
- name: 正式服-部署
pull: if-not-exists
image: appleboy/drone-ssh
when:
branch:
- master
settings:
host:
from_secret: HOST_PROD
username:
from_secret: USER_PROD
password:
from_secret: PWD_PROD
port: 22
script:
- cd /www/builder
- mkdir jdt-aoshi-prod
- tar -xzvf dist.tar -C /www/builder/jdt-aoshi-prod
- rm -rf dist.tar
- cd jdt-aoshi-prod
- docker build -t jdt-aoshi-prod .
- docker stop jdt-aoshi-prod
- docker rm jdt-aoshi-prod
- docker run -d -p 5000:80 --restart=always --name jdt-aoshi-prod jdt-aoshi-prod
- cd ..
- rm -rf jdt-aoshi-prod
- name: 企业微信通知
pull: if-not-exists
image: plugins/webhook
when:
branch:
- test
- master
status:
- success
- failure
settings:
urls: https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=a2065e21-4f92-4f5b-a432-2c0cd1d965b5
content_type: application/json
template: |
{
"msgtype": "markdown",
"markdown": {
"content": "{{#success build.status}}✅{{else}}❌{{/success}}**{{ repo.owner }}/{{ repo.name }}** (Build #{{build.number}})\n
>**构建结果**: {{ build.status }}
>**构建详情**: [点击查看]({{ build.link }})
>**代码分支**: {{ build.branch }}
>**提交标识**: {{ build.commit }}
>**提交发起**: {{ build.author }}
>**提交信息**: {{ build.message }}
"
}
}