Skip to content
This repository was archived by the owner on Sep 15, 2024. It is now read-only.

Commit db01640

Browse files
committed
Add GoReleaser
1 parent ff8ef47 commit db01640

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

.goreleaser.yaml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
before:
2+
hooks:
3+
- go mod tidy
4+
5+
builds:
6+
- id: oslatlong
7+
main: ./cmd/oslatlong
8+
binary: oslatlong
9+
10+
env:
11+
- CGO_ENABLED=0
12+
13+
goos:
14+
- linux
15+
- windows
16+
- darwin
17+
- freebsd
18+
19+
goarch:
20+
- amd64
21+
- arm
22+
- arm64
23+
24+
goarm:
25+
- 6
26+
- 7
27+
28+
ignore:
29+
- goos: darwin
30+
goarch: 386
31+
32+
archives:
33+
- replacements:
34+
darwin: Darwin
35+
linux: Linux
36+
windows: Windows
37+
386: i386
38+
amd64: x86_64
39+
40+
checksum:
41+
name_template: 'checksums.txt'
42+
43+
snapshot:
44+
name_template: "{{ incpatch .Version }}-next"
45+
46+
changelog:
47+
sort: asc
48+
filters:
49+
exclude:
50+
- '^docs:'
51+
- '^test:'
52+
53+
brews:
54+
- tap:
55+
owner: oogali
56+
name: homebrew-oslatlong
57+
folder: Formula
58+
homepage: "https://github.com/oogali/oslatlong"
59+
description: "OSM Nominatim skinny CLI"

0 commit comments

Comments
 (0)