-
Notifications
You must be signed in to change notification settings - Fork 18
/
.goreleaser.yml
68 lines (67 loc) · 1.45 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
version: 2
project_name: vaku
before:
hooks:
- go mod download
builds:
- id: vaku
binary: vaku
goos:
- darwin
- linux
- windows
goarch:
- 386
- amd64
- arm
- arm64
ignore:
- goos: darwin
goarch: 386
env:
- CGO_ENABLED=0
release:
prerelease: auto
changelog:
sort: asc
filters:
exclude:
- Merge pull request
- Merge branch
archives:
- id: vaku
format: zip
brews:
- name: vaku
description: CLI that extends the official Vault client.
homepage: https://vaku.dev/
skip_upload: auto
repository:
owner: lingrino
name: homebrew-tap
directory: Formula
commit_author:
name: Sean Lingren
email: sean@lingren.com
test: |
system "#{bin}/vaku version"
nfpms:
- id: vaku
description: CLI that extends the official Vault client.
homepage: https://vaku.dev/
maintainer: "Sean Lingren <sean@lingren.com>"
license: MIT
formats:
- deb
- rpm
dockers:
- dockerfile: Dockerfile
image_templates:
- ghcr.io/lingrino/vaku:latest
- ghcr.io/lingrino/vaku:{{ .Version }}
- ghcr.io/lingrino/vaku:{{ .Major }}
- ghcr.io/lingrino/vaku:{{ .Major }}.{{ .Minor }}
build_flag_templates:
- --label=org.opencontainers.image.created={{.Date}}
- --label=org.opencontainers.image.revision={{.FullCommit}}
- --label=org.opencontainers.image.version={{.Version}}