1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/www/docs/cookbooks/upload-to-bintray.md
Carlos Alexandro Becker 57f7e44556
docs: move bintray to cookbooks
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
2021-04-21 13:27:32 -03:00

700 B

Upload to Bintray

How it works

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

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, don't forget to publish the uploaded files (either via UI or REST API)
uploads:
  - name: bintray
    target: https://api.bintray.com/content/user.or.org.name/generic.repo.name/{{ .ProjectName }}/{{ .Version }}/
    username: goreleaser

Please see HTTP Upload for more details.