1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

updated docs

This commit is contained in:
Carlos Alexandro Becker 2017-09-26 18:36:29 -03:00
parent fd0e57ee4e
commit 405285a839
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
3 changed files with 16 additions and 10 deletions

View File

@ -16,11 +16,6 @@ release:
github:
owner: user
name: repo
# endpoint urls for github enterprise.
# Defaults are the github.com URLs.
api_url: github api endpoint
uploads_url: github file uploads url
downloads_url: github download url
# If set to true, will not auto-publish the release.
# Default is false

View File

@ -19,11 +19,6 @@ brew:
github:
owner: user
name: homebrew-tap
# endpoint urls for github enterprise.
# Defaults are the github.com URLs.
api_url: github api endpoint
uploads_url: github file uploads url
downloads_url: github download url
# Folder inside the repository to put the formula.
# Default is the root folder.

View File

@ -0,0 +1,16 @@
---
title: GitHub Enterprise Support
---
You can use GitHub Enteprise within GoReleaser by providing its URLs in
the `.goreleaer.yml` configuration file:
```yaml
# .goreleaser.yml
github_urls:
api: api.github.foo.bar
upload: uploads.github.foo.bar
download: github.foo.bar
```
If none is set, it will default to the public GitHub's URLs.