crm-h5/.drone.yml
XinWei 9648b415b8
All checks were successful
continuous-integration/drone/push Build is passing
init
2024-07-29 15:21:26 +08:00

25 lines
366 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: node:16.18.1
volumes:
- name: build-file
path: /dist
commands:
- npm install
- npm run 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