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 13:15:34 +08:00
|
|
|
- name: build-web
|
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
|
2023-03-06 13:20:35 +08:00
|
|
|
path: /drone/src/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 11:01:56 +08:00
|
|
|
|
2023-03-06 13:15:34 +08:00
|
|
|
- name: deploy-web
|
2023-03-06 13:23:40 +08:00
|
|
|
image: appleboy/drone-scp:1.6
|
2023-03-06 13:12:33 +08:00
|
|
|
settings:
|
|
|
|
host: mozzie.cn
|
|
|
|
username: root
|
|
|
|
password: cr654654.
|
|
|
|
port: 22
|
|
|
|
target: /www/wwwroot/nginx/html/backset.cn/
|
|
|
|
source: ./dist/*
|