1
0
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:
Carlos Alexandro Becker 2024-01-17 08:35:28 -03:00
parent 5bff6168f6
commit 87a237066f
No known key found for this signature in database
3 changed files with 32 additions and 8 deletions

View File

@ -1,9 +1,8 @@
# Fury.io (apt and rpm repositories) # Fury.io (apt and rpm repositories)
!!! success "GoReleaser Pro" !!! 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 The fury.io publisher is available only in [GoReleaser Pro feature](/pro/).
[custom publishers](/customization/publishers/).
You can easily create `deb` and `yum` repositories on [fury.io][fury] using GoReleaser. 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 ```yaml
# .goreleaser.yaml # .goreleaser.yaml
furies: furies:
- account: myaccount - account: myaccount
``` ```
This will automatically upload all your `deb` and `rpm` files. This will automatically upload all your `deb` and `rpm` files.
@ -30,8 +29,7 @@ You can also have plenty of customization options:
# goreleaser.yaml # goreleaser.yaml
furies: furies:
- - # fury.io account.
# fury.io account.
# Config is skipped if empty # Config is skipped if empty
account: "{{ .Env.FURY_ACCOUNT }}" account: "{{ .Env.FURY_ACCOUNT }}"
@ -64,6 +62,6 @@ furies:
[fury]: https://gemfury.com [fury]: https://gemfury.com
!!! tip !!! tip
Learn more about the [name template engine](/customization/templates/). Learn more about the [name template engine](/customization/templates/).

View File

@ -28,6 +28,15 @@ git:
ignore_tags: ignore_tags:
- nightly - nightly
- "{{.Env.IGNORE_TAG}}" - "{{.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 ## Semver sorting

19
www/docs/static/schema-pro.json generated vendored
View File

@ -550,7 +550,7 @@
], ],
"default": "" "default": ""
}, },
"skip": { "disable": {
"oneOf": [ "oneOf": [
{ {
"type": "string" "type": "string"
@ -587,6 +587,17 @@
"type": "string" "type": "string"
}, },
"type": "array" "type": "array"
},
"skip": {
"oneOf": [
{
"type": "string"
},
{
"type": "boolean"
}
],
"description": "use disable_disable instead"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@ -1193,6 +1204,12 @@
"type": "string" "type": "string"
}, },
"type": "array" "type": "array"
},
"ignore_tag_prefixes": {
"items": {
"type": "string"
},
"type": "array"
} }
}, },
"additionalProperties": false, "additionalProperties": false,