diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 0000000..63430b8 --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,36 @@ +env: + - CGO_ENABLED=0 + +builds: + - id: eqbc-go + main: ./cmd/feng + binary: feng + goos: + - linux + - darwin + - windows + goarch: + - 386 + - amd64 + ignore: + - goos: darwin + goarch: 386 + +archives: + - id: all + format_overrides: + - goos: windows + format: zip + replacements: + darwin: Darwin + linux: Linux + windows: Windows + 386: i386 + amd64: x86_64 + +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ .Tag }}" +changelog: + sort: asc diff --git a/.vscode/settings.json b/.vscode/settings.json index 55aaf96..569727b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -29,6 +29,7 @@ "CMAC", "cmyk", "cmykrle", + "commandline", "COMPSOS", "concat", "cpython", diff --git a/README.md b/README.md index 4441514..a26fe46 100644 --- a/README.md +++ b/README.md @@ -56,9 +56,9 @@ layout: # Installation -The software is still in alpha state, so no releases have yet been made. +Windows/macOS and Linux binaries is available on the [Releases](https://github.com/martinlindhe/feng/releases) page. -Assuming you have golang, then installing the commandline is as easy as: +Assuming you have golang, then installing the cli app `feng` is as easy as: go install github.com/martinlindhe/feng/cmd/feng@latest