-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy path.goreleaser.yaml
50 lines (42 loc) · 965 Bytes
/
.goreleaser.yaml
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
version: 2
project_name: dockershrink
before:
hooks:
- go test ./...
- go mod tidy
builds:
- id: dockershrink
main: ./main.go
binary: dockershrink
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w -X github.com/duaraghav8/dockershrink/cmd.Version={{.Version}}
archives:
- format_overrides:
- format: zip
goos: windows
checksum:
name_template: "checksums.txt"
signs:
- artifacts: checksum
changelog:
disable: true
brews:
- url_template: "https://github.com/duaraghav8/dockershrink/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: "Raghav Dua"
homepage: "https://github.com/duaraghav8/dockershrink"
description: "AI tool to reduce the size of Docker images"
dependencies:
- name: "go"
repository:
owner: "duaraghav8"
name: "homebrew-dockershrink"