-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
87 lines (79 loc) · 2.68 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
# 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 ./...
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/protoconf/protoconf-terraform/pkg/build.Version={{.Version}}
goos:
- linux
- windows
- darwin
ignore:
- goarch: "386"
- goos: windows
goarch: arm64
main: ./cmd/protoconf-terraform
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
brews:
- # Name template of the recipe
# Default to project name
name: protoconf-terraform
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: goreleaser@carlosbecker.com
# 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.
folder: Formula
# Your app's homepage.
# Default is empty.
homepage: "https://docs.protoconf.sh/"
# Template of your app's description.
# Default is empty.
description: "Terraform integration for protoconf"
# SPDX identifier of your app's license.
# Default is empty.
license: "MIT"
dockers:
- id: protoconf-docker
image_templates:
- "protoconf/protoconf-terraform:latest"
- "protoconf/protoconf-terraform:{{ .Tag }}"
- "protoconf/protoconf-terraform:v{{ .Major }}"
- "protoconf/protoconf-terraform:v{{ .Major }}.{{ .Minor }}"
- "ghcr.io/protoconf/protoconf-terraform:latest"
- "ghcr.io/protoconf/protoconf-terraform:{{ .Tag }}"
- "ghcr.io/protoconf/protoconf-terraform:{{ .Major }}"
- "ghcr.io/protoconf/protoconf-terraform:{{ .Major }}.{{ .Minor }}"
dockerfile: build/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}}"
- "--label=org.opencontainers.image.source=https://github.com/protoconf/protoconf-terraform"
- "--platform=linux/amd64"