crm-h5/.drone.yml
XinWei f9030082fe
All checks were successful
continuous-integration/drone/push Build is passing
'init'
2024-07-29 16:46:21 +08:00

28 lines
486 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: node:16.18.1
volumes:
- name: build-file
path: /build/dist # 容器内路径
host:
path: /root/crm-build/dist # 宿主机路径
commands:
- npm install
- npm run build
- cp -r dist /build
# - ls
# - cd dist
# - ls
#- name: test
# image: node:16.18.1
# commands:
# - npm run test
#- name: deploy
# image: nginx:1.21
# commands:
# - cp -r dist/. /usr/share/nginx/html