mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
a3867c8ccb
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
1.4 KiB
1.4 KiB
GitHub
API Token
GoReleaser requires an API token with the repo
scope selected to deploy the
artifacts to GitHub. You can create one
here.
This token should be added to the environment variables as GITHUB_TOKEN
.
Alternatively, you can provide the GitHub token in a file. GoReleaser will check
~/.config/goreleaser/github_token
by default, but you can change that in the
.goreleaser.yaml
file:
# .goreleaser.yaml
env_files:
github_token: ~/.path/to/my/github_token
Note that the environment variable will be used if available, regardless of the
github_token
file.
GitHub Enterprise
You can use GoReleaser with GitHub Enterprise by providing its URLs in the
.goreleaser.yaml
configuration file. This takes a normal string, or a template
value.
# .goreleaser.yaml
github_urls:
api: https://git.company.com/api/v3/
upload: https://git.company.com/api/uploads/
download: https://git.company.com/
# set to true if you use a self-signed certificate
skip_tls_verify: false
If none are set, they default to GitHub's public URLs.
Example release
Here's an example of what the release might look like: