.drone.yml 865 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. kind: pipeline
  2. type: docker
  3. # 流水线名称
  4. name: pc_shop_admin_cicd
  5. volumes:
  6. - name: build_dist
  7. host:
  8. path: /www/wwwroot/pc_shop_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/peter/pc_shop_admin.git /drone/src
  16. when:
  17. branch:
  18. - develop
  19. event:
  20. - push
  21. - name: npm_run_build
  22. image: node:20.16.0-slim
  23. volumes:
  24. - name: build_dist
  25. path: /drone/src/build
  26. commands:
  27. # - npm --registry=https://registry.npmmirror.com i
  28. - npm i --no-audit
  29. - npm run build-test
  30. - rm -rf ./build/*
  31. - cp -arf ./dist/* ./build
  32. - ls build
  33. - ls dist
  34. when:
  35. branch:
  36. - develop
  37. event:
  38. - push