-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
45 lines (40 loc) · 950 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
37
38
39
40
41
42
43
44
45
version: 2
project_name: gofaux
release:
github:
owner: tjb
name: gofaux
builds:
- id: gofaux
main: ./cmd/gofaux
goos:
- darwin
- linux
goarch:
- amd64
- arm64
ldflags:
- "-s -w"
binary: gofaux
archives:
- id: gofaux_archives
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
files:
- README.md
brews:
- name: gofaux
description: "versatile cli tool that captures and stores json requests, allowing you to replay them as needed."
homepage: "https://github.com/tjb/gofaux"
install: |
bin.install "gofaux"
test: |
system "#{bin}/gofaux --help"
commit_author:
name: "GitHub Actions"
email: "actions@github.com"
dependencies: []
skip_upload: false
url_template: "https://github.com/tjb/gofaux/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
repository:
owner: tjb
name: homebrew-gofaux