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:
parent
1bbcc39371
commit
ebd2afdf3c
1030
pkg/config/config.go
1030
pkg/config/config.go
File diff suppressed because it is too large
Load Diff
42
www/docs/static/schema.json
generated
vendored
42
www/docs/static/schema.json
generated
vendored
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user