github.com/ahmet2mir/goreleaser@v0.180.3-0.20210927151101-8e5ee5a9b8c5/www/docs/cmd/goreleaser_release.md (about) 1 # goreleaser release 2 3 Releases the current project 4 5 ``` 6 goreleaser release [flags] 7 ``` 8 9 ## Options 10 11 ``` 12 --auto-snapshot Automatically sets --snapshot if the repo is dirty 13 -f, --config string Load configuration from file 14 -h, --help help for release 15 -k, --key string GoReleaser Pro license key [$GORELEASER_KEY] 16 --nightly Generate a nightly build, publishing artifacts that support it (implies --skip-announce and --skip-validate) 17 -p, --parallelism int Amount tasks to run concurrently (default: number of CPUs) 18 --release-footer string Load custom release notes footer from a markdown file 19 --release-footer-tmpl string Load custom release notes footer from a templated markdown file (overrides --release-footer) 20 --release-header string Load custom release notes header from a markdown file 21 --release-header-tmpl string Load custom release notes header from a templated markdown file (overrides --release-header) 22 --release-notes string Load custom release notes from a markdown file 23 --release-notes-tmpl string Load custom release notes from a templated markdown file (overrides --release-notes) 24 --rm-dist Removes the dist folder 25 --skip-announce Skips announcing releases (implies --skip-validate) 26 --skip-publish Skips publishing artifacts 27 --skip-sign Skips signing artifacts 28 --skip-validate Skips git checks 29 --snapshot Generate an unversioned snapshot release, skipping all validations and without publishing any artifacts (implies --skip-publish, --skip-announce and --skip-validate, overrides --nightly) 30 --timeout duration Timeout to the entire release process (default 30m0s) 31 ``` 32 33 ## Options inherited from parent commands 34 35 ``` 36 --debug Enable debug mode 37 ``` 38 39 ## See also 40 41 * [goreleaser](/cmd/goreleaser/) - Deliver Go binaries as fast and easily as possible 42