1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-01 13:07:49 +02:00

chore: auto-update generated files

This commit is contained in:
actions-user 2024-05-12 17:30:31 +00:00
parent 6505654c86
commit b58a766d83
6 changed files with 124 additions and 5 deletions

6
flake.lock generated
View File

@ -54,11 +54,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1715087517,
"narHash": "sha256-CLU5Tsg24Ke4+7sH8azHWXKd0CFd4mhLWfhYgUiDBpQ=",
"lastModified": 1715447595,
"narHash": "sha256-VsVAUQOj/cS1LCOmMjAGeRksXIAdPnFIjCQ0XLkCsT0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b211b392b8486ee79df6cdfb1157ad2133427a29",
"rev": "062ca2a9370a27a35c524dc82d540e6e9824b652",
"type": "github"
},
"original": {

View File

@ -1 +1 @@
v1.25.1
v1.26.0

View File

@ -1 +1 @@
v1.25.1-pro
v1.26.0-pro

3
www/docs/static/releases-pro.json generated vendored
View File

@ -1,4 +1,7 @@
[
{
"tag_name": "v1.26.0-pro"
},
{
"tag_name": "v1.25.1-pro"
},

3
www/docs/static/releases.json generated vendored
View File

@ -1,4 +1,7 @@
[
{
"tag_name": "v1.26.0"
},
{
"tag_name": "v1.25.1"
},

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

@ -156,6 +156,9 @@
},
"opencolletive": {
"$ref": "#/$defs/OpenCollective"
},
"bluesky": {
"$ref": "#/$defs/Bluesky"
}
},
"additionalProperties": false,
@ -331,6 +334,21 @@
"additionalProperties": false,
"type": "object"
},
"Bluesky": {
"properties": {
"enabled": {
"type": "boolean"
},
"username": {
"type": "string"
},
"message_template": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Build": {
"properties": {
"id": {
@ -557,6 +575,9 @@
],
"default": "git"
},
"format": {
"type": "string"
},
"groups": {
"items": {
"$ref": "#/$defs/ChangelogGroup"
@ -1599,6 +1620,80 @@
"additionalProperties": false,
"type": "object"
},
"MacOSNotarize": {
"properties": {
"issuer_id": {
"type": "string"
},
"key": {
"type": "string"
},
"key_id": {
"type": "string"
},
"timeout": {
"type": "integer"
},
"wait": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"issuer_id",
"key",
"key_id"
]
},
"MacOSSign": {
"properties": {
"certificate": {
"type": "string"
},
"password": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"certificate",
"password"
]
},
"MacOSSignNotarize": {
"properties": {
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"enabled": {
"oneOf": [
{
"type": "string"
},
{
"type": "boolean"
}
]
},
"sign": {
"$ref": "#/$defs/MacOSSign"
},
"notarize": {
"$ref": "#/$defs/MacOSNotarize"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"sign",
"notarize"
]
},
"Mastodon": {
"properties": {
"enabled": {
@ -2229,6 +2324,21 @@
}
]
},
"Notarize": {
"properties": {
"macos": {
"items": {
"$ref": "#/$defs/MacOSSignNotarize"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"macos"
]
},
"OpenCollective": {
"properties": {
"enabled": {
@ -2394,6 +2504,9 @@
},
"type": "array"
},
"notarize": {
"$ref": "#/$defs/Notarize"
},
"docker_signs": {
"items": {
"$ref": "#/$defs/Sign"