mirror of
https://github.com/zhigang1992/flora-kit.git
synced 2026-01-12 22:47:28 +08:00
28 lines
428 B
YAML
28 lines
428 B
YAML
# goreleaser.yml
|
|
# Build customization
|
|
build:
|
|
main: main.go
|
|
binary: flora-kit
|
|
goos:
|
|
- windows
|
|
- darwin
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
ldflags: -s -w
|
|
release:
|
|
github:
|
|
owner: huacnlee
|
|
name: flora-kit
|
|
# Archive customization
|
|
archive:
|
|
format: tar.gz
|
|
replacements:
|
|
amd64: 64-bit
|
|
darwin: macOS
|
|
files:
|
|
- README.md
|
|
- LICENSE
|
|
- CHANGELOG.md
|
|
- flora.default.conf
|
|
- geoip.mmdb |