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

42 lines
890 B
Go
Raw Normal View History

package release
import (
"strings"
2017-03-22 21:01:29 -03:00
"github.com/goreleaser/goreleaser/config"
"github.com/goreleaser/goreleaser/internal/git"
"github.com/pkg/errors"
)
// remoteRepo gets the repo name from the Git config.
2017-03-22 21:01:29 -03:00
func remoteRepo() (result config.Repo, err error) {
if !git.IsRepo() {
return result, errors.New("current folder is not a git repository")
}
out, err := git.Run("config", "--get", "remote.origin.url")
if err != nil {
return result, errors.Wrap(err, "repository doesn't have an `origin` remote")
}
return extractRepoFromURL(out), nil
}
2017-03-22 21:01:29 -03:00
func extractRepoFromURL(s string) config.Repo {
for _, r := range []string{
"git@github.com:",
".git",
"https://github.com/",
"\n",
} {
s = strings.Replace(s, r, "", -1)
}
2017-03-22 21:01:29 -03:00
return toRepo(s)
}
func toRepo(s string) config.Repo {
var ss = strings.Split(s, "/")
return config.Repo{
Owner: ss[0],
Name: ss[1],
}
}