B00_github.ReleaseSourceRepository releases.
The type for releases.
pp is a formatter for issues.
pp_short is a short formatter for issues.
val create :
B00_http.Httpr.t ->
Auth.t ->
Repo.t ->
tag_name:string ->
body:string ->
unit ->
(t, string) Stdlib.resultcreate auth repo ~tag_name ~body () creates a new release in repository repo with given tag_name and body description.
val get :
B00_http.Httpr.t ->
Auth.t ->
Repo.t ->
tag_name:string ->
unit ->
(t, string) Stdlib.resultget auth repo ~tag_name () gets the release with given tag_name in repo tag_name.
val upload_asset :
B00_http.Httpr.t ->
Auth.t ->
Repo.t ->
t ->
content_type:string ->
name:string ->
string ->
(unit, string) Stdlib.resultupload_asset auth repo r ~content_type ~name asset uploads assets content asset with file name name and content type content_type in release r of repo r.