1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00

fix: jsonschema

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker 2022-08-04 15:30:25 -03:00
parent 1bbcc39371
commit ebd2afdf3c
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 536 additions and 536 deletions

File diff suppressed because it is too large Load Diff

42
www/docs/static/schema.json generated vendored
View File

@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/project",
"$ref": "#/$defs/Project",
"$defs": {
@ -396,16 +396,10 @@
"BuildHookConfig": {
"properties": {
"pre": {
"items": {
"$ref": "#/$defs/Hook"
},
"type": "array"
"$ref": "#/$defs/Hooks"
},
"post": {
"items": {
"$ref": "#/$defs/Hook"
},
"type": "array"
"$ref": "#/$defs/Hooks"
}
},
"additionalProperties": false,
@ -539,6 +533,12 @@
"group"
]
},
"Contents": {
"items": {
"$ref": "#/$defs/Content"
},
"type": "array"
},
"Discord": {
"properties": {
"enabled": {
@ -689,7 +689,7 @@
"type": "string"
},
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/t",
"$defs": {
"FileInfo": {
@ -975,7 +975,7 @@
"type": "string"
},
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/homebrew-dependency",
"properties": {
"name": {
@ -996,7 +996,7 @@
"type": "string"
},
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/t",
"properties": {
"dir": {
@ -1020,6 +1020,12 @@
}
]
},
"Hooks": {
"items": {
"$ref": "#/$defs/Hook"
},
"type": "array"
},
"IgnoredBuild": {
"properties": {
"goos": {
@ -1208,10 +1214,7 @@
"type": "array"
},
"contents": {
"items": {
"$ref": "#/$defs/Content"
},
"type": "array"
"$ref": "#/$defs/Contents"
},
"scripts": {
"$ref": "#/$defs/NFPMScripts"
@ -1467,10 +1470,7 @@
"type": "array"
},
"contents": {
"items": {
"$ref": "#/$defs/Content"
},
"type": "array"
"$ref": "#/$defs/Contents"
},
"scripts": {
"$ref": "#/$defs/NFPMScripts"
@ -2548,4 +2548,4 @@
}
},
"description": "goreleaser configuration definition file"
}
}