1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-09-16 09:26:52 +02:00

chore: schema update

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker
2022-11-11 23:57:03 -03:00
parent 964e703fb4
commit c4fd0a0c5b

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

@@ -526,6 +526,102 @@
"additionalProperties": false,
"type": "object"
},
"Chocolatey": {
"properties": {
"name": {
"type": "string"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"package_source_url": {
"type": "string"
},
"authoers": {
"type": "string"
},
"title": {
"type": "string"
},
"authors": {
"type": "string"
},
"project_url": {
"type": "string"
},
"url_template": {
"type": "string"
},
"icon_url": {
"type": "string"
},
"copyright": {
"type": "string"
},
"license_url": {
"type": "string"
},
"require_license_acceptance": {
"type": "boolean"
},
"project_source_url": {
"type": "string"
},
"docs_url": {
"type": "string"
},
"bug_tracker_url": {
"type": "string"
},
"tags": {
"type": "string"
},
"summary": {
"type": "string"
},
"description": {
"type": "string"
},
"release_notes": {
"type": "string"
},
"dependencies": {
"items": {
"$ref": "#/$defs/ChocolateyDependency"
},
"type": "array"
},
"skip_publish": {
"type": "boolean"
},
"api_key": {
"type": "string"
},
"source_repo": {
"type": "string"
},
"goamd64": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ChocolateyDependency": {
"properties": {
"id": {
"type": "string"
},
"version": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"CommitAuthor": {
"properties": {
"name": {
@@ -1898,6 +1994,12 @@
},
"type": "array"
},
"chocolatey": {
"items": {
"$ref": "#/$defs/Chocolatey"
},
"type": "array"
},
"universal_binaries": {
"items": {
"$ref": "#/$defs/UniversalBinary"