bintray.json.tmpl 852 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "package": {
  3. "name": "${TRAVIS_OS_NAME}",
  4. "repo": "${TRAVIS_BRANCH}",
  5. "subject": "docker-compose",
  6. "desc": "Automated build of master branch from travis ci.",
  7. "website_url": "https://github.com/docker/compose",
  8. "issue_tracker_url": "https://github.com/docker/compose/issues",
  9. "vcs_url": "https://github.com/docker/compose.git",
  10. "licenses": ["Apache-2.0"]
  11. },
  12. "version": {
  13. "name": "${TRAVIS_BRANCH}",
  14. "desc": "Automated build of the ${TRAVIS_BRANCH} branch.",
  15. "released": "${DATE}",
  16. "vcs_tag": "master"
  17. },
  18. "files": [
  19. {
  20. "includePattern": "dist/(.*)",
  21. "excludePattern": ".*\.tar.gz",
  22. "uploadPattern": "$1",
  23. "matrixParams": { "override": 1 }
  24. }
  25. ],
  26. "publish": true
  27. }