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

docs: update

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2024-04-27 11:49:59 -03:00
parent 919f220e71
commit 2cffcc58c5
No known key found for this signature in database
2 changed files with 122 additions and 1 deletions

View File

@ -3,7 +3,7 @@
GoReleaser Pro is a paid, closed-source GoReleaser distribution with some
additional features:
- [x] Cross publish (e.g. releases to GitLab, homebrew to GitHub);
- [x] Cross publish (e.g. releases to GitLab, pushes Homebrew Tap to GitHub);
- [x] Keep [DockerHub image descriptions up to date](/customization/dockerhub);
- [x] Create [macOS disk images (DMGs)](/customization/dmg);
- [x] Create [Windows installers](/customization/msi);

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

@ -165,6 +165,9 @@
},
"opencolletive": {
"$ref": "#/$defs/OpenCollective"
},
"bluesky": {
"$ref": "#/$defs/Bluesky"
}
},
"additionalProperties": false,
@ -364,6 +367,21 @@
"additionalProperties": false,
"type": "object"
},
"Bluesky": {
"properties": {
"enabled": {
"type": "boolean"
},
"username": {
"type": "string"
},
"message_template": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Build": {
"properties": {
"id": {
@ -593,6 +611,9 @@
],
"default": "git"
},
"format": {
"type": "string"
},
"groups": {
"items": {
"$ref": "#/$defs/ChangelogGroup"
@ -1951,6 +1972,80 @@
"wxs"
]
},
"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": {
@ -2632,6 +2727,21 @@
}
]
},
"Notarize": {
"properties": {
"macos": {
"items": {
"$ref": "#/$defs/MacOSSignNotarize"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"macos"
]
},
"OpenCollective": {
"properties": {
"enabled": {
@ -2832,6 +2942,9 @@
},
"type": "array"
},
"notarize": {
"$ref": "#/$defs/Notarize"
},
"docker_signs": {
"items": {
"$ref": "#/$defs/Sign"
@ -3218,6 +3331,14 @@
"token": {
"type": "string"
},
"token_type": {
"type": "string",
"enum": [
"github",
"gitlab",
"gitea"
]
},
"branch": {
"type": "string"
},