automated_admin/.drone.yml
lixin ea26dfd357
All checks were successful
continuous-integration/drone/push Build is passing
ci: 更新前端构建目录路径
- 将 web_build_dir 的主机路径从 /usr/local/frontend/automated_admin 修改为 /opt/1panel/apps/openresty/openresty/www/sites/120.48.5.80/index
- 此修改可能是为了适配新的部署环境或目录结构变化
2025-01-10 17:45:15 +08:00

41 lines
975 B
YAML

kind: pipeline
type: docker
name: deploy
#
volumes:
- name: node_modules
host:
path: /usr/local/frontend/node_modules
- name: web_build_dir
host:
path: /opt/1panel/apps/openresty/openresty/www/sites/120.48.5.80/index
- name: yarn_cache
host:
path: /usr/local/frontend/yarn_cache
steps:
- name: build-project
image: node:22-alpine
depends_on: [clone]
mirror: https://docker.1panelproxy.com
volumes:
- name: node_modules
path: /drone/src/node_modules
- name: web_build_dir
path: /drone/src/dist
- name: yarn_cache
path: /usr/local/share/.cache/yarn/v6
commands:
# - npm config set registry https://registry.npm.taobao.org
- yarn config set registry https://registry.npmmirror.com
- yarn install
- yarn build
#- npm cache clean --force
# - npm install
# - npm run build:prod
trigger:
branch:
- main
event:
- push