forked from protoconf/protoconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
90 lines (82 loc) · 2.58 KB
/
.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
# before:
# hooks:
# # You may remove this if you don't use go modules.
# # - go mod tidy
# # you may remove this if you don't need go generate
# # - go generate ./...
version: 2.0
builds:
- id: protoconf
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/protoconf/protoconf/consts.Version={{.Version}}
goos:
- linux
# - windows
- darwin
# - freebsd
# - openbsd
# - solaris
main: ./cmd/protoconf
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^fix(deps):"
brews:
- # Name template of the recipe
# Default to project name
name: protoconf
repository:
owner: protoconf
name: homebrew-tap
token: "{{ .Env.DEPLOY_GITHUB_TOKEN }}"
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: goreleaserbot
email: [email protected]
# The project name and current git tag are used in the format string.
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
# Folder inside the repository to put the formula.
# Default is the root folder.
directory: Formula
# Your app's homepage.
# Default is empty.
homepage: "https://www.protoconf.dev/"
# Template of your app's description.
# Default is empty.
description: "Configuration as Code framework based on protobuf and Starlark."
# SPDX identifier of your app's license.
# Default is empty.
license: "MIT"
dockers:
- id: protoconf-docker
ids:
- protoconf
image_templates:
- "protoconf/protoconf:latest"
- "protoconf/protoconf:{{ .Tag }}"
- "protoconf/protoconf:v{{ .Major }}"
- "protoconf/protoconf:v{{ .Major }}.{{ .Minor }}"
- "ghcr.io/protoconf/protoconf:latest"
- "ghcr.io/protoconf/protoconf:{{ .Tag }}"
- "ghcr.io/protoconf/protoconf:{{ .Major }}"
- "ghcr.io/protoconf/protoconf:{{ .Major }}.{{ .Minor }}"
dockerfile: docker/Dockerfile
build_flag_templates:
- "--pull"
- "--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"