mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-01 13:07:49 +02:00
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
parent
5bff6168f6
commit
87a237066f
@ -1,9 +1,8 @@
|
||||
# Fury.io (apt and rpm repositories)
|
||||
|
||||
!!! success "GoReleaser Pro"
|
||||
The fury.io publisher is a [GoReleaser Pro feature](/pro/). You might be
|
||||
able to reproduce some of its behavior on GoReleaser OSS using
|
||||
[custom publishers](/customization/publishers/).
|
||||
|
||||
The fury.io publisher is available only in [GoReleaser Pro feature](/pro/).
|
||||
|
||||
You can easily create `deb` and `yum` repositories on [fury.io][fury] using GoReleaser.
|
||||
|
||||
@ -17,7 +16,7 @@ as an environment variable named `FURY_TOKEN`:
|
||||
```yaml
|
||||
# .goreleaser.yaml
|
||||
furies:
|
||||
- account: myaccount
|
||||
- account: myaccount
|
||||
```
|
||||
|
||||
This will automatically upload all your `deb` and `rpm` files.
|
||||
@ -30,8 +29,7 @@ You can also have plenty of customization options:
|
||||
# goreleaser.yaml
|
||||
|
||||
furies:
|
||||
-
|
||||
# fury.io account.
|
||||
- # fury.io account.
|
||||
# Config is skipped if empty
|
||||
account: "{{ .Env.FURY_ACCOUNT }}"
|
||||
|
||||
@ -64,6 +62,6 @@ furies:
|
||||
|
||||
[fury]: https://gemfury.com
|
||||
|
||||
|
||||
!!! tip
|
||||
|
||||
Learn more about the [name template engine](/customization/templates/).
|
||||
|
@ -28,6 +28,15 @@ git:
|
||||
ignore_tags:
|
||||
- nightly
|
||||
- "{{.Env.IGNORE_TAG}}"
|
||||
|
||||
# Tags that begin with these prefixes will be ignored.
|
||||
#
|
||||
# Templates: allowed.
|
||||
# This feature is only available in GoReleaser Pro.
|
||||
# Since: v1.24 (pro)
|
||||
ignore_tag_prefixes:
|
||||
- foo/
|
||||
- "{{.Env.IGNORE_TAG_PREFIX}}/bar"
|
||||
```
|
||||
|
||||
## Semver sorting
|
||||
|
19
www/docs/static/schema-pro.json
generated
vendored
19
www/docs/static/schema-pro.json
generated
vendored
@ -550,7 +550,7 @@
|
||||
],
|
||||
"default": ""
|
||||
},
|
||||
"skip": {
|
||||
"disable": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
@ -587,6 +587,17 @@
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"skip": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "boolean"
|
||||
}
|
||||
],
|
||||
"description": "use disable_disable instead"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
@ -1193,6 +1204,12 @@
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"ignore_tag_prefixes": {
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
Loading…
x
Reference in New Issue
Block a user