1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-15 11:56:56 +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": [ "oneOf": [
{ {
"type": "string" "type": "string"
}, },
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema", "items": {
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/t", "$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": { "$id": "https://github.com/goreleaser/goreleaser/pkg/config/hook",
"dir": { "oneOf": [
"type": "string" {
},
"cmd": {
"type": "string"
},
"env": {
"items": {
"type": "string" "type": "string"
}, },
"type": "array" {
}, "$schema": "https://json-schema.org/draft/2020-12/schema",
"output": { "$id": "https://github.com/goreleaser/goreleaser/pkg/config/t",
"type": "boolean" "properties": {
} "dir": {
"type": "string"
},
"cmd": {
"type": "string"
},
"env": {
"items": {
"type": "string"
},
"type": "array"
},
"output": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
}
]
}, },
"additionalProperties": false, "type": "array"
"type": "object"
} }
] ]
}, },
"Hooks": {
"items": {
"$ref": "#/$defs/Hook"
},
"type": "array"
},
"IgnoredBuild": { "IgnoredBuild": {
"properties": { "properties": {
"goos": { "goos": {