1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-07 13:31:37 +02:00

feat: gitlab option to use_job_token (#2993)

This commit is contained in:
Carlos Alexandro Becker 2022-08-16 00:39:13 -03:00 committed by GitHub
parent 4dc372d784
commit 5cfc78d92c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 1 deletions

View File

@ -44,7 +44,14 @@ func NewGitLab(ctx *context.Context, token string) (Client, error) {
options = append(options, gitlab.WithBaseURL(apiURL))
}
client, err := gitlab.NewClient(token, options...)
var client *gitlab.Client
var err error
if ctx.Config.GitLabURLs.UseJobToken {
client, err = gitlab.NewJobClient(token, options...)
} else {
client, err = gitlab.NewClient(token, options...)
}
if err != nil {
return &gitlabClient{}, err
}

View File

@ -30,6 +30,7 @@ type GitLabURLs struct {
Download string `yaml:"download,omitempty" json:"download,omitempty"`
SkipTLSVerify bool `yaml:"skip_tls_verify,omitempty" json:"skip_tls_verify,omitempty"`
UsePackageRegistry bool `yaml:"use_package_registry,omitempty" json:"use_package_registry,omitempty"`
UseJobToken bool `yaml:"use_job_token,omitempty" json:"use_job_token,omitempty"`
}
// GiteaURLs holds the URLs to be used when using gitea.

View File

@ -30,11 +30,16 @@ You can use GoReleaser with GitLab Enterprise by providing its URLs in the
gitlab_urls:
api: https://gitlab.mycompany.com/api/v4/
download: https://gitlab.company.com
# set to true if you use a self-signed certificate
skip_tls_verify: false
# set to true if you want to upload to the Package Registry rather than attachments
# Only works with GitLab 13.5+
use_package_registry: false
# Set this if you set GITLAB_TOKEN to the value of CI_JOB_TOKEN:
use_job_token: true
```
If none are set, they default to GitLab's public URLs.