Skip to content

Commit

Permalink
Add GoReleaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen428 committed Nov 13, 2018
1 parent b1e3c6a commit 6734281
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

dist/
36 changes: 36 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
builds:
- env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- i386
- amd64
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: 386
- goos: darwin
goarch: arm
- goos: darwin
goarch: arm64
- goos: windows
goarch: 386
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
changelog:
sort: asc
brew:
github:
owner: citizen428
name: homebrew-tap
homepage: 'https://github.com/citizen428/repl'
description: 'Add more read-eval-print-love in your life'
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ line editing capabilities (including history and completions) provided by [liner

## Installation

### Homebrew

```sh
$ brew tap citizen428/homebrew-tap
$ brew install repl
```

### Release

Head over to the [release page](https://github.com/citizen428/repl/releases) and download the archive for your operating system/architecture.

### Manual

```sh
Expand Down

0 comments on commit 6734281

Please sign in to comment.