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

docs: small updates

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker 2022-11-11 23:54:16 -03:00
parent f2281e8ff2
commit 964e703fb4
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 43 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# Chocolatey Packages
> Since: v1.13.0
GoReleaser can also generate `nupkg` packages.
[Chocolatey](http://chocolatey.org/) are packages based on `nupkg` format, that
will let you publish your project directly to the Chocolatey Repository. From
@ -130,4 +132,5 @@ chocolateys:
Learn more about the [name template engine](/customization/templates/).
!!! note
GoReleaser will not install `chocolatey` nor any of its dependencies for you.
GoReleaser will not install `chocolatey`/`choco` nor any of its dependencies
for you.

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

@ -350,6 +350,9 @@
"no_main_check": {
"type": "boolean"
},
"buildmode": {
"type": "string"
},
"ldflags": {
"$ref": "#/$defs/StringArray"
},
@ -401,6 +404,9 @@
"goamd64": {
"type": "string"
},
"buildmode": {
"type": "string"
},
"ldflags": {
"$ref": "#/$defs/StringArray"
},
@ -1340,6 +1346,9 @@
"apk": {
"$ref": "#/$defs/NFPMAPK"
},
"archlinux": {
"$ref": "#/$defs/NFPMArchLinux"
},
"overrides": {
"patternProperties": {
".*": {
@ -1433,6 +1442,33 @@
"additionalProperties": false,
"type": "object"
},
"NFPMArchLinux": {
"properties": {
"pkgbase": {
"type": "string"
},
"packager": {
"type": "string"
},
"scripts": {
"$ref": "#/$defs/NFPMArchLinuxScripts"
}
},
"additionalProperties": false,
"type": "object"
},
"NFPMArchLinuxScripts": {
"properties": {
"preupgrade": {
"type": "string"
},
"postupgrade": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"NFPMDeb": {
"properties": {
"scripts": {
@ -1604,6 +1640,9 @@
},
"apk": {
"$ref": "#/$defs/NFPMAPK"
},
"archlinux": {
"$ref": "#/$defs/NFPMArchLinux"
}
},
"additionalProperties": false,