-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yml
77 lines (77 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
- go mod download
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
ignore:
- goos: darwin
goarch: arm
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
dir: ./cmd
ldflags: "-s -w -X main.revision={{.Tag}}-{{.ShortCommit}}-{{.CommitDate}} -X main.version={{.Tag}} -X main.branch={{.Branch}}"
hooks:
post:
- upx "{{ .Path }}"
dockers:
- goos: linux
goarch: amd64
image_templates:
- "ghcr.io/iliafrenkel/go-pb:latest"
- "ghcr.io/iliafrenkel/go-pb:{{ .Tag }}"
- "iliaf/go-pb:latest"
- "iliaf/go-pb:{{ .Tag }}"
skip_push: false
dockerfile: Dockerfile.release
use: docker
extra_files:
- assets
- templates
build_flag_templates:
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--platform=linux/amd64"
archives:
- name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
files:
- LICENSE.txt
- README.md
- src: ./assets
dst: assets
strip_parent: true
- src: ./templates
dst: templates
strip_parent: true
format_overrides:
- goos: windows
format: zip
checksum:
algorithm: sha256
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: iliafrenkel
name: go-pb
draft: false
prerelease: auto