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

docs: udpate jsonschema

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2023-09-22 02:20:49 +00:00
parent 2f351a6ece
commit 8794dc5955
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 64 additions and 64 deletions

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

@ -1492,10 +1492,8 @@
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
}
@ -1533,10 +1531,8 @@
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
}
@ -1579,10 +1575,8 @@
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
},
@ -1738,13 +1732,11 @@
]
},
"Matrix": {
"patternProperties": {
".*": {
"items": {
"type": "string"
},
"type": "array"
}
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"type": "object"
},
@ -1892,10 +1884,8 @@
"$ref": "#/$defs/NFPMScripts"
},
"overrides": {
"patternProperties": {
".*": {
"$ref": "#/$defs/NFPMOverridables"
}
"additionalProperties": {
"$ref": "#/$defs/NFPMOverridables"
},
"type": "object"
},
@ -3283,18 +3273,14 @@
"type": "array"
},
"layout": {
"patternProperties": {
".*": {
"$ref": "#/$defs/SnapcraftLayoutMetadata"
}
"additionalProperties": {
"$ref": "#/$defs/SnapcraftLayoutMetadata"
},
"type": "object"
},
"apps": {
"patternProperties": {
".*": {
"$ref": "#/$defs/SnapcraftAppMetadata"
}
"additionalProperties": {
"$ref": "#/$defs/SnapcraftAppMetadata"
},
"type": "object"
},
@ -3836,10 +3822,8 @@
"type": "boolean"
},
"custom_headers": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
},
@ -3865,10 +3849,8 @@
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
},

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

@ -1355,10 +1355,8 @@
"type": "string"
},
"labels": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
},
@ -1639,10 +1637,8 @@
"$ref": "#/$defs/NFPMArchLinux"
},
"overrides": {
"patternProperties": {
".*": {
"$ref": "#/$defs/NFPMOverridables"
}
"additionalProperties": {
"$ref": "#/$defs/NFPMOverridables"
},
"type": "object"
},
@ -2614,7 +2610,16 @@
"type": "array"
},
"artifacts": {
"type": "string"
"type": "string",
"enum": [
"source",
"package",
"archive",
"binary",
"any",
"any"
],
"default": "archive"
},
"ids": {
"items": {
@ -2923,18 +2928,14 @@
"type": "array"
},
"layout": {
"patternProperties": {
".*": {
"$ref": "#/$defs/SnapcraftLayoutMetadata"
}
"additionalProperties": {
"$ref": "#/$defs/SnapcraftLayoutMetadata"
},
"type": "object"
},
"apps": {
"patternProperties": {
".*": {
"$ref": "#/$defs/SnapcraftAppMetadata"
}
"additionalProperties": {
"$ref": "#/$defs/SnapcraftAppMetadata"
},
"type": "object"
},
@ -3400,10 +3401,8 @@
"type": "boolean"
},
"custom_headers": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
}
@ -3426,10 +3425,8 @@
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"type": "string"
}
"additionalProperties": {
"type": "string"
},
"type": "object"
},
@ -3526,10 +3523,31 @@
"type": "string"
},
"type": "array"
},
"dependencies": {
"items": {
"$ref": "#/$defs/WingetDependency"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"WingetDependency": {
"properties": {
"package_identifier": {
"type": "string"
},
"minimum_version": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"package_identifier"
]
}
},
"description": "goreleaser configuration definition file"