Docker image build for renpy release automation https://www.renpy.org/latest.html
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.

32 lines
767 B

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