Compare commits

...

2 Commits

Author SHA1 Message Date
21a348663b feat: 部署
All checks were successful
continuous-integration/drone/push Build is passing
2024-12-29 18:36:38 +08:00
d3bf488bc5 feat: 部署
Some checks reported errors
continuous-integration/drone/push Build was killed
2024-12-29 17:18:31 +08:00
3 changed files with 56 additions and 2379 deletions

54
.drone.yml Normal file
View File

@ -0,0 +1,54 @@
kind: pipeline
type: docker
name: vue-deployment
steps:
# 编译
- name: build
image: node:lts
commands:
- npm config set registry https://mirrors.huaweicloud.com/repository/npm/
- rm -rf dist
- npm install
- npm run build
# 清除旧版本
- name: clean
image: appleboy/drone-ssh
when:
branch: deploy
event: push
settings:
host:
from_secret: ssh_host
username:
from_secret: ssh_username
key:
from_secret: ssh_key
port:
from_secret: ssh_port
command_timeout: 2m
script:
- 'rm -rf /root/sites/wuziqi.bitnet.fun/index/*'
# 部署
- name: deploy
image: appleboy/drone-scp
when:
branch: deploy
event: push
settings:
host:
from_secret: ssh_host
username:
from_secret: ssh_username
key:
from_secret: ssh_key
port:
from_secret: ssh_port
command_timeout: 2m
target: /root/sites/wuziqi.bitnet.fun/index/
overwrite: true
source:
- ./dist/*
strip_components: 1

2
.gitignore vendored
View File

@ -28,3 +28,5 @@ coverage
*.sw?
*.tsbuildinfo
pnpm-lock.yaml
package-lock.json

2379
package-lock.json generated

File diff suppressed because it is too large Load Diff