1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +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-06-15 03:09:13 +00:00
parent f365c724dc
commit 0e83d32610
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -2280,6 +2280,12 @@
},
"type": "array"
},
"winget": {
"items": {
"$ref": "#/$defs/Winget"
},
"type": "array"
},
"aurs": {
"items": {
"$ref": "#/$defs/AUR"
@ -3639,6 +3645,82 @@
},
"additionalProperties": false,
"type": "object"
},
"Winget": {
"properties": {
"name": {
"type": "string"
},
"package_identifier": {
"type": "string"
},
"publisher": {
"type": "string"
},
"publisher_url": {
"type": "string"
},
"copyright": {
"type": "string"
},
"author": {
"type": "string"
},
"path": {
"type": "string"
},
"repository": {
"$ref": "#/$defs/RepoRef"
},
"commit_author": {
"$ref": "#/$defs/CommitAuthor"
},
"commit_msg_template": {
"type": "string"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"goamd64": {
"type": "string"
},
"skip_upload": {
"oneOf": [
{
"type": "string"
},
{
"type": "boolean"
}
]
},
"url_template": {
"type": "string"
},
"short_description": {
"type": "string"
},
"description": {
"type": "string"
},
"homepage": {
"type": "string"
},
"license": {
"type": "string"
},
"license_url": {
"type": "string"
},
"release_notes_url": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
}
},
"description": "goreleaser configuration definition file"