1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

chore: docs auto-update

This commit is contained in:
actions-user 2023-06-15 03:02:19 +00:00
parent 6afdb49c12
commit dce5649319

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

@ -2068,6 +2068,12 @@
},
"type": "array"
},
"winget": {
"items": {
"$ref": "#/$defs/Winget"
},
"type": "array"
},
"aurs": {
"items": {
"$ref": "#/$defs/AUR"
@ -3303,6 +3309,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"