2023-03-05 17:17:04 +08:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2023-03-06 10:06:47 +08:00
|
|
|
type: docker
|
2023-03-06 10:05:46 +08:00
|
|
|
name: backset.cn deploy
|
2023-03-05 17:17:04 +08:00
|
|
|
|
2023-03-06 13:12:33 +08:00
|
|
|
# 宿主机目录
|
|
|
|
volumes:
|
|
|
|
- name: node_modules
|
|
|
|
host:
|
|
|
|
path: /home/drone/cache/node_modules
|
|
|
|
|
2023-03-05 17:17:04 +08:00
|
|
|
steps:
|
2023-03-06 10:11:36 +08:00
|
|
|
- name: 构建
|
2023-03-06 10:06:47 +08:00
|
|
|
image: node:16.19-alpine
|
2023-03-06 13:12:33 +08:00
|
|
|
# 容器内挂载点
|
2023-03-06 11:01:56 +08:00
|
|
|
volumes:
|
2023-03-06 13:12:33 +08:00
|
|
|
- name: node_modules-web
|
|
|
|
path: /node_modules
|
2023-03-06 10:05:46 +08:00
|
|
|
commands:
|
2023-03-06 13:12:33 +08:00
|
|
|
- pwd
|
2023-03-06 10:06:47 +08:00
|
|
|
- node -v
|
|
|
|
- npm -v
|
2023-03-06 10:13:26 +08:00
|
|
|
- npm install -g pnpm
|
|
|
|
- pnpm i
|
|
|
|
- pnpm build:web
|
2023-03-06 13:13:02 +08:00
|
|
|
when:
|
2023-03-06 13:12:33 +08:00
|
|
|
event: tag
|
2023-03-06 11:01:56 +08:00
|
|
|
|
2023-03-06 13:12:33 +08:00
|
|
|
- name: 部署
|
|
|
|
image: appleboy/drone-scp
|
|
|
|
settings:
|
|
|
|
host: mozzie.cn
|
|
|
|
username: root
|
|
|
|
password: cr654654.
|
|
|
|
port: 22
|
|
|
|
target: /www/wwwroot/nginx/html/backset.cn/
|
|
|
|
source: ./dist/*
|
|
|
|
when:
|
2023-03-06 13:13:02 +08:00
|
|
|
event: tag
|