diff --git a/www/docs/customization/chocolatey.md b/www/docs/customization/chocolatey.md index 5ea9ff95c2d..27f8143820c 100644 --- a/www/docs/customization/chocolatey.md +++ b/www/docs/customization/chocolatey.md @@ -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. diff --git a/www/docs/static/schema-pro.json b/www/docs/static/schema-pro.json index a171522033d..ce09c7acee5 100644 --- a/www/docs/static/schema-pro.json +++ b/www/docs/static/schema-pro.json @@ -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,