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

30 lines
746 B

4 years ago
  1. ---
  2. resources:
  3. - name: git-resource
  4. type: git
  5. icon: git
  6. source:
  7. uri: https://git.nulloctet.com/docker/renpy-movie-checker.git
  8. ignore_paths:
  9. - pipeline.yml
  10. - upload_pipeline.sh
  11. - README.md
  12. - name: git-resource-image
  13. type: docker-image
  14. icon: docker
  15. source:
  16. repository: ((nexus_docker_write.host))/sothr/renpy-movie-checker
  17. username: ((nexus_docker_write.username))
  18. password: ((nexus_docker_write.password))
  19. jobs:
  20. - name: build-image
  21. plan:
  22. - get: git-resource
  23. trigger: true
  24. - put: git-resource-image
  25. params:
  26. build: git-resource
  27. tag_file: git-resource/tag
  28. tag_as_latest: true
  29. get_params: {skip_download: true}