1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-02 22:05:46 +02:00
goreleaser/clients/github.go
Carlos Alexandro Becker 764f23869e
github client factory
2017-01-14 14:50:50 -02:00

17 lines
299 B
Go

package clients
import (
"context"
"github.com/google/go-github/github"
"golang.org/x/oauth2"
)
func Github(token string) *github.Client {
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
)
tc := oauth2.NewClient(context.Background(), ts)
return github.NewClient(tc)
}