Remove artifacts.
Show usage menu.
Show version identifier.
tuco looks for a configuration file tuco.yaml in the current working directory.
Default: false
When true, enables additional logs.
Example:
debug: trueDefault: "bin"
Customize the toplevel directory for binary artifacts.
Example:
artifacts: "dist"Required, nonblank.
Software application name.
Example:
banner = "hello"Target Go ports.
To enumerate available ports, run go tool dist list.
Enable GOOS values.
Example:
# Skip mobile SDKs
os:
- "aix"
# - "android"
- "darwin"
- "dragonfly"
- "freebsd"
- "illumos"
# - "ios"
- "js"
- "linux"
- "netbsd"
- "openbsd"
- "plan9"
- "solaris"
- "wasip1"
- "windows"Enable GOARCH values.
Example:
arch:
- "386"
- "amd64"
- "arm"
- "arm64"
- "loong64"
- "mips"
- "mips64"
- "mips64le"
- "mipsle"
- "ppc64"
- "ppc64le"
- "riscv64"
- "s390x"
- "wasm"Default:
- ".DS_Store" # Finder
- "Thumbs.db" # ExplorerSkips corresponding file path patterns.
Syntax: Glob
Example:
excludes:
- ".DS_Store" # Finder
- ".directory" # Dolpin
- "Thumbs.db" # ExplorerDefault: (empty)
Supply additional CLI arguments to go build... commands.
Example:
go_args:
- "-v"