-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
57 lines (52 loc) · 1.27 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
project_name: redis-server-lite
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
# archives:
# - replacements:
# darwin: Darwin
# linux: Linux
# 386: i386
# amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
brews:
- tap:
owner: OmkarPh
name: homebrew-tap
name: redis-server-lite
homepage: "https://github.com/OmkarPh/redis-server-lite"
description: "A lightweight Redis server implementation in Go."
folder: Formula
install: |
bin.install "redis-server-lite"
test: |
assert_match /A simple port-forward wrapper tool for multiple pods\/deployments\/services/, shell_output("#{bin}/kubepfm -h", 0)
# nfpms:
# - maintainer: Omkar Phansopkar <[email protected]>
# description: Redis Server Lite is a lightweight Redis server implementation in Go.
# homepage: https://github.com/OmkarPh/redis-server-lite
# license: Apache-2.0
# formats:
# - deb
# - rpm
# - apk
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
# Ref. https://flowerinthenight.com/blog/2023/04/13/homebrew-golang-p2