-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
36 lines (34 loc) · 913 Bytes
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 2
builds:
- # GOOS list to build for.
# For more info refer to: https://golang.org/doc/install/source#environment
# Defaults are darwin and linux.
goos:
- linux
- darwin
- windows
# GOARCH to build for.
# For more info refer to: https://golang.org/doc/install/source#environment
# Defaults are 386 and amd64.
goarch:
- amd64
- arm
- arm64
brews:
- name: json-log-to-human-readable
repository:
owner: fhopfensperger
name: homebrew-tap
directory: Formula
homepage: https://fhopfensperger.github.io
description: Transforms json log into human readable output
license: Apache 2.0
test: |
system "#{bin}/json-log-to-human-readable -v"
dependencies:
- name: go
type: optional
- name: git
type: optional
install: |-
bin.install "json-log-to-human-readable"