Skip to content

Commit

Permalink
ci: add .goreleaser.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlindhe committed Jul 21, 2022
1 parent f6160cc commit ebc3684
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"CMAC",
"cmyk",
"cmykrle",
"commandline",
"COMPSOS",
"concat",
"cpython",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ebc3684

Please sign in to comment.