Files
CLIProxyAPI/.goreleaser.yml
Luis Pater d2394b0be9 Update .goreleaser.yml to specify archive formats for different OS targets
- Added `tar.gz` as the default archive format.
- Introduced `zip` format override for Windows builds.
2025-08-08 14:28:02 +08:00

22 lines
387 B
YAML

builds:
- id: "cli-proxy-api"
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
main: ./cmd/server/
binary: cli-proxy-api
archives:
- id: "cli-proxy-api"
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
- README_CN.md
- config.example.yaml