diff --git a/goreleaser.yml b/goreleaser.yml index cc992fe..80563ad 100644 --- a/goreleaser.yml +++ b/goreleaser.yml @@ -1,17 +1,19 @@ -homepage: &homepage https://github.com/gulien/orbit -description: &description A simple tool for running commands and generating files from templates -build: - env: - - CGO_ENABLED=0 - goos: - - linux - - darwin - - windows - goarch: - - 386 - - amd64 - - arm - - arm64 +--- +project_name: Orbit +builds: + - main: ./orbit.go + binary: orbit + env: + - CGO_ENABLED=0 + goos: + - linux + - darwin + - windows + goarch: + - 386 + - amd64 + - arm + - arm64 archive: name_template: '{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' replacements: @@ -20,6 +22,7 @@ archive: windows: Windows 386: i386 amd64: x86_64 + format: tar.gz format_overrides: - goos: windows format: zip \ No newline at end of file