File tree 3 files changed +46
-0
lines changed
3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Build files
2
+ dist /
3
+
1
4
# Compiled Object files, Static and Dynamic libs (Shared Objects)
2
5
* .o
3
6
* .a
Original file line number Diff line number Diff line change
1
+ # This is an example goreleaser.yaml file with some sane defaults.
2
+ # Make sure to check the documentation at http://goreleaser.com
3
+ before :
4
+ hooks :
5
+ # you may remove this if you don't use vgo
6
+ - go mod download
7
+ # you may remove this if you don't need go generate
8
+ - go generate ./...
9
+ builds :
10
+ - main : ./cmd/trousseau
11
+ binary : trousseau
12
+ env :
13
+ - CGO_ENABLED=0
14
+ archives :
15
+ - replacements :
16
+ darwin : Darwin
17
+ linux : Linux
18
+ windows : Windows
19
+ 386 : i386
20
+ amd64 : x86_64
21
+ signs :
22
+ - artifacts : checksum
23
+ brews :
24
+ - name : trousseau
25
+ github :
26
+ owner : oleiade
27
+ name : homebrew-tap
28
+ folder : Formula
29
+ homepage : https://github.com/oleiade/trousseau
30
+ description : File based encrypted key-value store
31
+ test : |
32
+ system "#{bin}/trousseau -v"
33
+ checksum :
34
+ name_template : ' checksums.txt'
35
+ snapshot :
36
+ name_template : " {{ .Tag }}-next"
37
+ changelog :
38
+ sort : asc
39
+ filters :
40
+ exclude :
41
+ - ' ^docs:'
42
+ - ' ^test:'
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ github.com/google/go-github v0.0.0-20160802180827-56add9d4071b h1:RqHoi09dHniK/7
6
6
github.com/google/go-github v0.0.0-20160802180827-56add9d4071b /go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ =
7
7
github.com/google/go-querystring v0.0.0-20160401233042-9235644dd9e5 h1:oERTZ1buOUYlpmKaqlO5fYmz8cZ1rYu5DieJzF4ZVmU =
8
8
github.com/google/go-querystring v0.0.0-20160401233042-9235644dd9e5 /go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck =
9
+ github.com/guelfey/go.dbus v0.0.0-20131113121618-f6a3a2366cc3 h1:fngCxKbvZdctIsWj2hYijhAt4iK0JXSSA78B36xP0yI =
9
10
github.com/guelfey/go.dbus v0.0.0-20131113121618-f6a3a2366cc3 /go.mod h1:0CNX5Cvi77WEH8llpfZ/ieuqyceb1cnO5//b5zzsnF8 =
10
11
github.com/howeyc/gopass v0.0.0-20160803164817-b63a7d07e65d h1:QSXZhkCwA1j3WbSVEnxB+9sPsuthBgvpi4BUTaYPc6E =
11
12
github.com/howeyc/gopass v0.0.0-20160803164817-b63a7d07e65d /go.mod h1:lADxMC39cJJqL93Duh1xhAs4I2Zs8mKS89XWXFGp9cs =
You can’t perform that action at this time.
0 commit comments