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

chore: schema update

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2023-05-27 03:13:15 +00:00
parent 86a8317ff6
commit fa36cde69d
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -2156,6 +2156,64 @@
"additionalProperties": false,
"type": "object"
},
"Nix": {
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"repository": {
"$ref": "#/$defs/RepoRef"
},
"commit_author": {
"$ref": "#/$defs/CommitAuthor"
},
"commit_msg_template": {
"type": "string"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"goamd64": {
"type": "string"
},
"skip_upload": {
"oneOf": [
{
"type": "string"
},
{
"type": "boolean"
}
]
},
"url_template": {
"type": "string"
},
"install": {
"type": "string"
},
"post_install": {
"type": "string"
},
"description": {
"type": "string"
},
"homepage": {
"type": "string"
},
"license": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"OpenCollective": {
"properties": {
"enabled": {
@ -2223,6 +2281,12 @@
},
"type": "array"
},
"nix": {
"items": {
"$ref": "#/$defs/Nix"
},
"type": "array"
},
"aurs": {
"items": {
"$ref": "#/$defs/AUR"