-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
36 lines (36 loc) · 954 Bytes
/
.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
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/xyz2ogc/
binary: xyz2ogc
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- name_template: >-
{{ .ProjectName }}-
{{- .Os }}-
{{- .Arch }}
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
use: github-native
brews:
- repository:
owner: planetlabs
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
url_template: "https://github.com/planetlabs/{{ .ProjectName }}/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://github.com/planetlabs/go-ogc"
description: "Generate OGC API - Tiles metadata from exiting XYZ tilesets."
license: "Apache-2.0"
test: |
system "#{bin}/xyz2ogc version"