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@gmail.com>
This commit is contained in:
Carlos A Becker 2021-12-15 15:58:28 -03:00
parent d5a552f892
commit 78cca698f7
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 47 additions and 0 deletions

View File

@ -24,6 +24,7 @@ goreleaser release [flags]
--rm-dist Removes the dist folder
--skip-announce Skips announcing releases (implies --skip-validate)
--skip-publish Skips publishing artifacts
--skip-sbom Skips cataloging artifacts
--skip-sign Skips signing artifacts
--skip-validate Skips git checks
--snapshot Generate an unversioned snapshot release, skipping all validations and without publishing any artifacts (implies --skip-publish, --skip-announce and --skip-validate, overrides --nightly)

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

@ -1731,6 +1731,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#",
@ -1919,6 +1926,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": {