You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.drone.yml 620 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. kind: pipeline
  2. type: docker
  3. name: masterpipe
  4. platform:
  5. os: linux
  6. arch: arm64
  7. volumes:
  8. - name: cache
  9. host:
  10. path: /var/lib/cache
  11. steps:
  12. - name: maven
  13. image: maven:3-jdk-8
  14. volumes:
  15. - name: cache
  16. path: /root/.m2
  17. commands:
  18. - mvn compile
  19. - name: 远程主机部署
  20. image: appleboy/drone-ssh:linux-arm64
  21. settings:
  22. host:
  23. from_secret: ip
  24. username:
  25. from_secret: name
  26. password:
  27. from_secret: pwd
  28. port: 22
  29. script:
  30. - chmod +x /home/deploy.sh
  31. - nohup bash /home/deploy.sh &
  32. trigger:
  33. branch:
  34. - master
  35. event:
  36. - push
  37. - pull_request