diff --git a/www/docs/customization/fury.md b/www/docs/customization/fury.md index da1338be2..15d8ce8d7 100644 --- a/www/docs/customization/fury.md +++ b/www/docs/customization/fury.md @@ -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/). diff --git a/www/docs/customization/git.md b/www/docs/customization/git.md index c71f1d578..2a62ed679 100644 --- a/www/docs/customization/git.md +++ b/www/docs/customization/git.md @@ -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 diff --git a/www/docs/static/schema-pro.json b/www/docs/static/schema-pro.json index 8c9bf2907..dc2184725 100644 --- a/www/docs/static/schema-pro.json +++ b/www/docs/static/schema-pro.json @@ -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,