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 419 B

12345678910111213141516171819202122232425262728
  1. kind: pipeline
  2. type: docker
  3. name: dockerpipe
  4. platform:
  5. os: linux
  6. arch: arm64
  7. steps:
  8. - name: maven
  9. image: maven:3-jdk-10
  10. volumes:
  11. - name: cache
  12. path: /root/.m2
  13. commands:
  14. - mvn compile
  15. - name: docker
  16. image: plugins/docker
  17. settings:
  18. username: 153692771@qq.com
  19. password: Docker199637
  20. repo: foo/bar
  21. tags: latest
  22. trigger:
  23. branch:
  24. - docker
  25. event:
  26. - push
  27. - pull_request