-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.goreleaser.yml
More file actions
33 lines (30 loc) · 814 Bytes
/
.goreleaser.yml
File metadata and controls
33 lines (30 loc) · 814 Bytes
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
before:
hooks:
- go mod download
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
github:
owner: shellbear
name: web-watcher
dockers:
- ids:
- web-watcher
dockerfile: Dockerfile.cgo
image_templates:
- "docker.pkg.github.com/shellbear/web-watcher/web-watcher:{{ .Tag }}"
- "docker.pkg.github.com/shellbear/web-watcher/web-watcher:latest"
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.name={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"