Files
BlackFruit-UI/.drone.yml
arlenops ed5e276a38
All checks were successful
continuous-integration/drone/push Build is passing
再开一次
2025-11-20 16:58:40 +08:00

28 lines
521 B
YAML

kind: pipeline
type: exec
name: web模块任务
platform:
os: linux
arch: amd64
steps:
- name: Pull latest code from Gitea
commands:
- cd /www/wwwroot/hgdemo.hgidc.cn/public/web/BlackFruit-web
- if [ ! -d .git ]; then
git clone https://yiqiu:***@gitea.ycyaw.com/yiqiu/BlackFruit-UI.git .;
else
git pull;
fi
- ls -l
- name: Restart Nginx
commands:
- nginx -s reload
when:
branch:
include:
- main
- master