mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
3426d04837
Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
1.8 KiB
1.8 KiB
goreleaser build
Builds the current project
Synopsis
The goreleaser build
command is analogous to the
go build
command, in the sense it only builds binaries.
Its itented usage is, for example, within Makefiles to avoid setting up ldflags and etc in several places. That way, the GoReleaser config becomes the source of truth for how the binaries should be built.
It also allows you to generate a local build for your current machine only using
the --single-target
option, and specific build IDs using the
--id
option in case you have more than one.
When using --single-target
, the GOOS
and
GOARCH
environment variables are used to determine the target,
defaulting to the current's machine target if not set.
goreleaser build [flags]
Options
-f, --config string Load configuration from file
-h, --help help for build
--id string Builds only the specified build id
-o, --output string Path to the binary, defaults to the distribution folder according to configs. Only taked into account when using --single-target and a single id (either with --id or if config only has one build)
-p, --parallelism int Amount tasks to run concurrently (default: number of CPUs)
--rm-dist Remove the dist folder before building
--single-target Builds only for current GOOS and GOARCH
--skip-post-hooks Skips all post-build hooks
--skip-validate Skips several sanity checks
--snapshot Generate an unversioned snapshot build, skipping all validations
--timeout duration Timeout to the entire build process (default 30m0s)
Options inherited from parent commands
--debug Enable debug mode
See also
- goreleaser - Deliver Go binaries as fast and easily as possible