github.com/goreleaser/goreleaser@v1.25.1/www/docs/cmd/goreleaser_continue.md (about) 1 # goreleaser continue 2 3 Continues a previously prepared release 4 5 ## Synopsis 6 7 If you have a previously prepared release (run with `goreleaser release --prepare` or `goreleaser release --split`), you can use this command to continue it. 8 9 Environment variables will be re-evaluated here, so make sure they are 10 available to the continue command as well. 11 12 !!! success "GoReleaser Pro" 13 This subcommand is a [GoReleaser Pro feature](https://goreleaser.com/pro/). 14 15 16 ``` 17 goreleaser continue [flags] 18 ``` 19 20 ## Options 21 22 ``` 23 -d, --dist string dist directory to continue (default "./dist") 24 -h, --help help for continue 25 -k, --key string GoReleaser Pro license key [$GORELEASER_KEY] 26 --merge Merges multiple parts of a --split release 27 -p, --parallelism int Amount tasks to run concurrently (default: number of CPUs) 28 --skip strings Skip the given options (valid options are: after) 29 --timeout duration Timeout to the entire continue process (default 30m0s) 30 ``` 31 32 ## Options inherited from parent commands 33 34 ``` 35 --debug Enable verbose mode (deprecated) 36 --verbose Enable verbose mode 37 ``` 38 39 ## See also 40 41 * [goreleaser](/cmd/goreleaser/) - Deliver Go binaries as fast and easily as possible 42