mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-22 04:08:49 +02:00
64b1f14a86
* refactor: merging archive in the same repo * refactor: merging archive in the same repo * refactor: better organizing packages * refactor: fixing renames * fix: new dep version * fix: makefile * fix: zip/tar tests * fix: gitigonore * fix: s3 tests * fix: archive test
25 lines
678 B
Go
25 lines
678 B
Go
// Package client contains the client implementations for several providers.
|
|
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
// Info of the repository
|
|
type Info struct {
|
|
Description string
|
|
Homepage string
|
|
URL string
|
|
}
|
|
|
|
// Client interface
|
|
type Client interface {
|
|
CreateRelease(ctx *context.Context, body string) (releaseID int64, err error)
|
|
CreateFile(ctx *context.Context, commitAuthor config.CommitAuthor, repo config.Repo, content bytes.Buffer, path, message string) (err error)
|
|
Upload(ctx *context.Context, releaseID int64, name string, file *os.File) (err error)
|
|
}
|