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

docs: update

This commit is contained in:
actions-user 2021-12-12 03:23:10 +00:00
parent bfdec808ab
commit d5a552f892

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

@ -1584,6 +1584,13 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Announce"
},
"sboms": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/SBOM"
},
"type": "array"
},
"universal_binaries": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
@ -1757,6 +1764,45 @@
"additionalProperties": false,
"type": "object"
},
"SBOM": {
"properties": {
"id": {
"type": "string"
},
"cmd": {
"type": "string"
},
"env": {
"items": {
"type": "string"
},
"type": "array"
},
"args": {
"items": {
"type": "string"
},
"type": "array"
},
"documents": {
"items": {
"type": "string"
},
"type": "array"
},
"artifacts": {
"type": "string"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"SMTP": {
"properties": {
"enabled": {