github.com/joselitofilho/goreleaser@v0.155.1-0.20210123221854-e4891856c593/www/docs/customization/bintray.md (about) 1 --- 2 title: Bintray 3 --- 4 5 ## How it works 6 7 Uploading to Bintray is a simple case of [using HTTP Upload](https://goreleaser.com/customization/upload/). 8 9 ### Pre and post requisites: 10 * Create a user and/or an org in Bintray 11 * Create a generic repository in Bintray 12 * Create a package with a name matching your `ProjectName` 13 * After publishing, don't forget to publish the uploaded files (either via UI or [REST API](https://bintray.com/docs/api/#_publish_discard_uploaded_content)) 14 15 ```yaml 16 uploads: 17 - name: bintray 18 target: https://api.bintray.com/content/user.or.org.name/generic.repo.name/{{ .ProjectName }}/{{ .Version }}/ 19 username: goreleaser 20 ``` 21 22 Please see [HTTP Upload](https://goreleaser.com/customization/upload/) for more details.