feat: 部署

This commit is contained in:
gaze 2024-12-29 17:12:07 +08:00 committed by icezhb
parent a158249f23
commit a201f113c3

View File

@ -7,9 +7,30 @@ 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
@ -26,7 +47,8 @@ steps:
port:
from_secret: ssh_port
command_timeout: 2m
target:
from_secret: target
target: /root/sites/wuziqi.bitnet.fun/index/
overwrite: true
source:
- ./*
- ./dist/*
strip_components: 1