1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/www/content/bintray.md
2018-09-10 09:10:50 -03:00

800 B

title series hideFromIndex weight
Bintray customization true 120

How it works

Uploading to Bintray is a simple case of using HTTP PUT.

Pre and post requisites:

  • Create a user and/or an org in Bintray
  • Create a generic repository in Bintray
  • Create a package with a name matching your ProjectName
  • After publishing, dont' forget to publish the uploaded files (either via UI or REST API)
puts:
  - name: bintray
    target: https://api.bintray.com/content/user.or.org.name/generic.repo.name/{{ .ProjectName }}/{{ .Version }}/
    username: goreleaser

Please see HTTP Put for more details.