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

docs: update jsonschema

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2024-06-05 11:15:50 -03:00
parent 3a4b363645
commit 35a5302479
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -1176,7 +1176,7 @@ type Source struct {
// Project includes all project configuration.
type Project struct {
Version int `yaml:"version,omitempty" json:"version,omitempty" jsonschema:"enum=1,default=1"`
Version int `yaml:"version,omitempty" json:"version,omitempty" jsonschema:"enum=2,default=2"`
ProjectName string `yaml:"project_name,omitempty" json:"project_name,omitempty"`
Env []string `yaml:"env,omitempty" json:"env,omitempty"`
Release Release `yaml:"release,omitempty" json:"release,omitempty"`

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

@ -2311,9 +2311,9 @@
"version": {
"type": "integer",
"enum": [
1
2
],
"default": 1
"default": 2
},
"project_name": {
"type": "string"