.drone.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. kind: pipeline
  2. type: docker
  3. # 流水线名称
  4. name: au_front_admin_cicd
  5. volumes:
  6. - name: build_dist
  7. host:
  8. path: /www/wwwroot/pc_admin_auto
  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/PromoAu/pc_shop_admin.git /drone/src
  16. when:
  17. branch:
  18. - develop
  19. event:
  20. - push
  21. # - name: npm_run_build
  22. # image: node:16.14.0
  23. # volumes:
  24. # - name: build_dist
  25. # path: /drone/src/dist
  26. # commands:
  27. # - pwd
  28. # - echo "master branch web hook"
  29. # when:
  30. # branch:
  31. # - master
  32. # event:
  33. # - push
  34. - name: npm_run_build
  35. image: node:20.14.0-slim
  36. volumes:
  37. - name: build_dist
  38. path: /drone/src/build
  39. commands:
  40. # - npm --registry=https://registry.npmmirror.com i
  41. - npm i --no-audit
  42. - npm run build-test
  43. - rm -rf ./build/*
  44. - cp -arf ./dist/* ./build
  45. - ls build
  46. - ls dist
  47. when:
  48. branch:
  49. - develop
  50. event:
  51. - push