.drone.yml 824 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. kind: pipeline
  2. type: docker
  3. # 流水线名称
  4. name: crm_extend_cicd
  5. volumes:
  6. - name: build_dist
  7. host:
  8. path: /www/wwwroot/crm_extend
  9. clone:
  10. disable: true
  11. steps:
  12. - name: clone
  13. image: alpine/git
  14. commands:
  15. - git clone --depth=1 -b develop --single-branch http://front:carlyle123@git.promocollection.com.au:11180/peter/crm_extend.git /drone/src
  16. when:
  17. branch:
  18. - develop
  19. event:
  20. - push
  21. - name: npm_run_build
  22. image: node:18.17.1-slim
  23. volumes:
  24. - name: build_dist
  25. path: /drone/src/build
  26. commands:
  27. - npm --registry=https://registry.npmmirror.com i
  28. - npm run build-test
  29. - rm -rf ./build/*
  30. - cp -arf ./dist/* ./build
  31. - ls build
  32. - ls dist
  33. when:
  34. branch:
  35. - develop
  36. event:
  37. - push