- .core/build.yaml - cross-platform build configuration - .core/release.yaml - release workflow configuration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
431 B
YAML
32 lines
431 B
YAML
# Core CLI build configuration
|
|
# Used by: core build
|
|
|
|
version: 1
|
|
|
|
project:
|
|
name: core
|
|
description: Host UK Core CLI
|
|
main: "."
|
|
binary: core
|
|
|
|
build:
|
|
cgo: false
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
- -X main.Version={{.Version}}
|
|
env: []
|
|
|
|
targets:
|
|
- os: linux
|
|
arch: amd64
|
|
- os: linux
|
|
arch: arm64
|
|
- os: darwin
|
|
arch: amd64
|
|
- os: darwin
|
|
arch: arm64
|
|
- os: windows
|
|
arch: amd64
|