1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-13 11:50:34 +02:00

chore: update schema

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2023-07-20 12:56:54 +00:00
parent f3a285f71a
commit 7c2a9878af
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -1371,42 +1371,48 @@
}
]
},
"Hook": {
"Hooks": {
"oneOf": [
{
"type": "string"
},
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/t",
"properties": {
"dir": {
"type": "string"
},
"cmd": {
"type": "string"
},
"env": {
"items": {
"items": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/hook",
"oneOf": [
{
"type": "string"
},
"type": "array"
},
"output": {
"type": "boolean"
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/t",
"properties": {
"dir": {
"type": "string"
},
"cmd": {
"type": "string"
},
"env": {
"items": {
"type": "string"
},
"type": "array"
},
"output": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
}
]
},
"additionalProperties": false,
"type": "object"
"type": "array"
}
]
},
"Hooks": {
"items": {
"$ref": "#/$defs/Hook"
},
"type": "array"
},
"IgnoredBuild": {
"properties": {
"goos": {