1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-19 20:57:53 +02:00

fix: typo in User-Agent header value (#4765)

Corrects typo in the value of the `UserAgentHeaderValue` constant.
This commit is contained in:
Oleksandr Redko 2024-04-08 01:46:14 +03:00 committed by GitHub
parent 826438b865
commit 0a38d90f66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ const (
defaultMessageTemplate = `{ "message": "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"}`
ContentTypeHeaderKey = "Content-Type"
UserAgentHeaderKey = "User-Agent"
UserAgentHeaderValue = "gorleaser"
UserAgentHeaderValue = "goreleaser"
AuthorizationHeaderKey = "Authorization"
DefaultContentType = "application/json; charset=utf-8"
)