1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-17 01:42:37 +02:00

docs: update

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker
2023-03-01 01:45:52 -03:00
parent 53838da8ac
commit adc279a15c
4 changed files with 36 additions and 4 deletions

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

@ -2259,6 +2259,12 @@
"git": {
"$ref": "#/$defs/Git"
},
"template_files": {
"items": {
"$ref": "#/$defs/TemplateFile"
},
"type": "array"
},
"universal_binaries": {
"items": {
"$ref": "#/$defs/UniversalBinary"
@ -3072,6 +3078,28 @@
"additionalProperties": false,
"type": "object"
},
"TemplateFile": {
"properties": {
"id": {
"type": "string"
},
"src": {
"type": "string"
},
"dst": {
"type": "string"
},
"mode": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"src",
"dst"
]
},
"Twitter": {
"properties": {
"enabled": {