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:
parent
d5a552f892
commit
78cca698f7
@ -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
46
www/docs/static/schema-pro.json
generated
vendored
@ -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": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user