mirror of
https://github.com/foomo/squadron.git
synced 2025-10-16 12:35:42 +00:00
32 lines
642 B
YAML
32 lines
642 B
YAML
# .goreleaser.yml
|
|
# Build customization
|
|
builds:
|
|
- binary: squadron
|
|
main: ./cmd/main.go
|
|
env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -s -w -X cmd/actions/version.version={{.Version}}
|
|
goos:
|
|
- windows
|
|
- darwin
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
|
|
# .goreleaser.yml
|
|
archives:
|
|
- format: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
brews:
|
|
# Reporitory to push the tap to.
|
|
- github:
|
|
owner: foomo
|
|
name: homebrew-squadron
|
|
caveats: "squadron -h"
|
|
homepage: "https://github.com/foomo/squadron"
|
|
description: "CLI utility manage infrastructure as code with helm"
|