-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
56 lines (53 loc) · 1.03 KB
/
.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
47
48
49
50
51
52
53
54
55
56
project_name: az-blob-hashdeep
builds:
- env:
- CGO_ENABLED=0
binary: az-blob-hashdeep
ldflags:
- -s -w -X main.Version={{.Version}} -X main.Commit={{.ShortCommit}}
goos:
- linux
- windows
- darwin
goarch:
- amd64
ignore:
- goos: darwin
goarch: arm64
- goos: darwin
goarch: i386
archives:
- id: distribution
format: tar.gz
format_overrides:
- goos: windows
format: zip
replacements:
darwin: macOS
linux: Linux
windows: Windows
amd64: x86_64
files:
- LICENSE
- README.md
dockers:
- image_templates:
- "evenh/az-blob-hashdeep"
- "evenh/az-blob-hashdeep:latest"
- "evenh/az-blob-hashdeep:{{ .Version }}"
goos: linux
goarch: amd64
goarm: ''
ids:
- az-blob-hashdeep
dockerfile: Dockerfile
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-dev"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'