1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +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-09-17 17:24:09 +00:00
parent cd2feb3c81
commit 491bf50d69
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -2965,7 +2965,16 @@
"type": "array"
},
"artifacts": {
"type": "string"
"type": "string",
"enum": [
"source",
"package",
"archive",
"binary",
"any",
"any"
],
"default": "archive"
},
"ids": {
"items": {
@ -3956,10 +3965,31 @@
"type": "string"
},
"type": "array"
},
"dependencies": {
"items": {
"$ref": "#/$defs/WingetDependency"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"WingetDependency": {
"properties": {
"package_identifier": {
"type": "string"
},
"minimum_version": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"package_identifier"
]
}
},
"description": "goreleaser configuration definition file"