1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-26 04:22:05 +02:00

119 lines
3.2 KiB
Go
Raw Normal View History

2016-12-28 22:23:39 -02:00
package release
2016-12-28 23:21:49 -02:00
import (
2016-12-30 09:27:35 -02:00
"log"
2016-12-28 23:21:49 -02:00
"os"
2016-12-29 18:10:11 -02:00
"os/exec"
2017-01-29 22:33:08 -02:00
"path/filepath"
2016-12-28 23:21:49 -02:00
"github.com/google/go-github/github"
2017-01-14 20:01:32 -02:00
"github.com/goreleaser/goreleaser/clients"
"github.com/goreleaser/goreleaser/context"
2016-12-29 14:17:49 -02:00
"golang.org/x/sync/errgroup"
2016-12-28 23:21:49 -02:00
)
2016-12-28 22:23:39 -02:00
2016-12-30 12:41:59 -02:00
// Pipe for github release
2016-12-30 09:27:35 -02:00
type Pipe struct{}
2017-01-14 19:41:32 +01:00
// Description of the pipe
2017-01-14 15:14:35 -02:00
func (Pipe) Description() string {
2017-01-19 10:04:41 +01:00
return "Releasing to GitHub"
2016-12-30 09:27:35 -02:00
}
2016-12-30 12:41:59 -02:00
// Run the pipe
2017-01-14 14:06:57 -02:00
func (Pipe) Run(ctx *context.Context) error {
2017-02-23 16:01:54 -03:00
client := clients.GitHub(ctx)
2016-12-28 23:21:49 -02:00
2017-01-14 14:06:57 -02:00
r, err := getOrCreateRelease(client, ctx)
2016-12-28 23:21:49 -02:00
if err != nil {
return err
}
2016-12-29 14:17:49 -02:00
var g errgroup.Group
2017-01-14 14:06:57 -02:00
for _, archive := range ctx.Archives {
2017-01-14 12:55:52 -02:00
archive := archive
g.Go(func() error {
2017-01-29 21:55:32 -02:00
return upload(ctx, client, *r.ID, archive, ctx.Config.Archive.Format)
2017-01-14 12:55:52 -02:00
})
2017-01-29 22:33:08 -02:00
for _, format := range ctx.Config.FPM.Formats {
format := format
2017-01-29 21:55:32 -02:00
g.Go(func() error {
2017-01-29 22:33:08 -02:00
return upload(ctx, client, *r.ID, archive, format)
2017-01-29 21:55:32 -02:00
})
}
2016-12-28 23:21:49 -02:00
}
2016-12-29 14:17:49 -02:00
return g.Wait()
2016-12-28 22:23:39 -02:00
}
2016-12-28 23:21:49 -02:00
2017-01-14 14:06:57 -02:00
func getOrCreateRelease(client *github.Client, ctx *context.Context) (*github.RepositoryRelease, error) {
2017-01-13 21:42:28 -02:00
data := &github.RepositoryRelease{
2017-01-14 14:06:57 -02:00
Name: github.String(ctx.Git.CurrentTag),
TagName: github.String(ctx.Git.CurrentTag),
Body: github.String(description(ctx.Git.Diff)),
2017-01-13 21:42:28 -02:00
}
2017-03-22 21:01:29 -03:00
r, _, err := client.Repositories.GetReleaseByTag(
ctx,
ctx.Config.Release.GitHub.Owner,
ctx.Config.Release.GitHub.Name,
ctx.Git.CurrentTag,
)
2017-01-14 14:06:57 -02:00
if err != nil {
2017-03-22 21:01:29 -03:00
log.Println("Creating release", ctx.Git.CurrentTag, "on", ctx.Config.Release.GitHub.String())
r, _, err = client.Repositories.CreateRelease(
ctx,
ctx.Config.Release.GitHub.Owner,
ctx.Config.Release.GitHub.Name,
data,
)
2017-01-13 21:42:28 -02:00
return r, err
}
2017-03-22 21:01:29 -03:00
log.Println("Updating existing release", ctx.Git.CurrentTag, "on", ctx.Config.Release.GitHub.String())
r, _, err = client.Repositories.EditRelease(
ctx,
ctx.Config.Release.GitHub.Owner,
ctx.Config.Release.GitHub.Name,
*r.ID,
data,
)
2017-01-13 21:42:28 -02:00
return r, err
}
2016-12-29 11:21:50 -02:00
func description(diff string) string {
2016-12-30 09:56:54 -02:00
result := "## Changelog\n" + diff + "\n\n--\nAutomated with @goreleaser"
2016-12-29 11:21:50 -02:00
cmd := exec.Command("go", "version")
bts, err := cmd.CombinedOutput()
if err != nil {
return result
}
return result + "\nBuilt with " + string(bts)
}
2017-01-29 21:55:32 -02:00
func upload(ctx *context.Context, client *github.Client, releaseID int, archive, format string) error {
archive = archive + "." + format
2017-01-29 22:33:08 -02:00
var path = filepath.Join("dist", archive)
2017-01-30 10:01:29 -02:00
// In case the file doesn't exist, we just ignore it.
// We do this because we can get invalid combinations of archive+format here,
// like darwinamd64 + deb or something like that.
// It's assumed that the archive pipe would fail the entire thing in case it fails to
// generate some archive, as well fpm pipe is expected to fail if something wrong happens.
// So, here, we just assume IsNotExist as an expected error.
// TODO: maybe add a list of files to upload in the context so we don't have to do this.
2017-01-29 22:33:08 -02:00
if _, err := os.Stat(path); os.IsNotExist(err) {
return nil
}
file, err := os.Open(path)
2016-12-28 23:21:49 -02:00
if err != nil {
return err
}
2017-01-14 12:55:52 -02:00
defer func() { _ = file.Close() }()
2017-01-19 10:04:41 +01:00
log.Println("Uploading", file.Name())
2017-01-02 13:20:33 -02:00
_, _, err = client.Repositories.UploadReleaseAsset(
2017-02-23 16:01:54 -03:00
ctx,
2017-03-22 21:01:29 -03:00
ctx.Config.Release.GitHub.Owner,
ctx.Config.Release.GitHub.Name,
2017-01-02 13:20:33 -02:00
releaseID,
2017-01-14 12:55:52 -02:00
&github.UploadOptions{Name: archive},
2017-01-02 13:20:33 -02:00
file,
)
2016-12-28 23:21:49 -02:00
return err
}