-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
46 lines (37 loc) · 965 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
46
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
checksum:
name_template: "checksums.txt"
archives:
- name_template: "{{ .ProjectName }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
brews:
- name: git-get
description: Go gets your code
homepage: https://github.com/arbourd/git-get
test: |
repo = "github.com/arbourd/git-get"
assert_match "#{testpath}/src/#{repo}", shell_output("#{bin}/git-get #{repo}")
cd "#{testpath}/src/#{repo}" do
assert_match "https://#{repo}", shell_output("git remote -v")
end
conflicts:
- git-extras
directory: Formula
repository:
owner: arbourd
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_author:
name: Dylan Arbour
email: [email protected]