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-06-22 11:31:19 -03:00
parent 3059eea8e9
commit 86b3c943d0
No known key found for this signature in database
3 changed files with 20 additions and 1 deletions

View File

@ -20,6 +20,7 @@ goreleaser build [flags]
## Options
```
--auto-snapshot Automatically sets --snapshot if the repository is dirty
--clean Removes the 'dist' directory before building
-f, --config string Load configuration from file
-h, --help help for build

View File

@ -27,7 +27,7 @@ goreleaser release [flags]
--release-notes string Load custom release notes from a markdown file (will skip GoReleaser changelog generation)
--release-notes-tmpl string Load custom release notes from a templated markdown file (overrides --release-notes)
--single-target Builds only for current GOOS and GOARCH, regardless of what's set in the configuration file (implies --skip=publish) (Pro only)
--skip strings Skip the given options (valid options are: after, announce, aur, before, chocolatey, dmg, docker, dockerhub, fury, homebrew, ko, msi, nfpm, nix, notarize, publish, sbom, scoop, sign, snapcraft, validate, winget)
--skip strings Skip the given options (valid options are: after, announce, archive, aur, before, chocolatey, dmg, docker, dockerhub, fury, homebrew, ko, msi, nfpm, nix, notarize, publish, sbom, scoop, sign, snapcraft, validate, winget)
--snapshot Generate an unversioned snapshot release, skipping all validations and without publishing any artifacts (implies --skip=announce,publish,validate)
--split Split the build so it can be merged and published later (implies --prepare) (Pro only)
--timeout duration Timeout to the entire release process (default 30m0s)

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

@ -332,6 +332,9 @@
"include_meta": {
"type": "boolean"
},
"extra_files_only": {
"type": "boolean"
},
"templated_extra_files": {
"items": {
"$ref": "#/$defs/TemplatedExtraFile"
@ -4180,8 +4183,23 @@
},
"type": "object"
},
"extra_files": {
"items": {
"$ref": "#/$defs/ExtraFile"
},
"type": "array"
},
"extra_files_only": {
"type": "boolean"
},
"matrix": {
"$ref": "#/$defs/Matrix"
},
"templated_extra_files": {
"items": {
"$ref": "#/$defs/TemplatedExtraFile"
},
"type": "array"
}
},
"additionalProperties": false,