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

docs: update schema

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker 2022-08-17 23:52:05 -03:00
parent ce264f1fca
commit 46e9db4843
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -555,10 +555,7 @@
}
},
"additionalProperties": false,
"type": "object",
"required": [
"group"
]
"type": "object"
},
"Contents": {
"items": {
@ -758,6 +755,32 @@
}
]
},
"FileInfo": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/goreleaser/goreleaser/pkg/config/file-info",
"$ref": "#/$defs/FileInfo",
"$defs": {
"FileInfo": {
"properties": {
"owner": {
"type": "string"
},
"group": {
"type": "string"
},
"mode": {
"type": "integer"
},
"mtime": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false,
"type": "object"
}
}
},
"Filters": {
"properties": {
"exclude": {