File tree 3 files changed +35
-2
lines changed
3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change
1
+ dist /
Original file line number Diff line number Diff line change
1
+ # This is an example .goreleaser.yml 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 go modules.
6
+ - go mod tidy
7
+ # you may remove this if you don't need go generate
8
+ - go generate ./...
9
+ builds :
10
+ - env :
11
+ - CGO_ENABLED=0
12
+ goos :
13
+ - linux
14
+ - windows
15
+ - darwin
16
+ main : ./cmd/mpd-mpris
17
+ binary : mpd-mpris
18
+ archives :
19
+ - replacements :
20
+ darwin : Darwin
21
+ linux : Linux
22
+ windows : Windows
23
+ 386 : i386
24
+ amd64 : x86_64
25
+ checksum :
26
+ name_template : ' checksums.txt'
27
+ snapshot :
28
+ name_template : " {{ .Tag }}-next"
29
+ changelog :
30
+ sort : asc
31
+ filters :
32
+ exclude :
33
+ - ' ^docs:'
34
+ - ' ^test:'
Original file line number Diff line number Diff line change @@ -2,7 +2,5 @@ github.com/fhs/gompd/v2 v2.2.0 h1:zdSYAAOzQ5cCCgYa5CoXkL0Vr0Cqb/b5JmTobirLc90=
2
2
github.com/fhs/gompd/v2 v2.2.0 /go.mod h1:nNdZtcpD5VpmzZbRl5rV6RhxeMmAWTxEsSIMBkmMIy4 =
3
3
github.com/godbus/dbus/v5 v5.0.3 h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME =
4
4
github.com/godbus/dbus/v5 v5.0.3 /go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA =
5
- github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw =
6
- github.com/pkg/errors v0.8.0 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
7
5
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
8
6
github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
You can’t perform that action at this time.
0 commit comments