-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
51 lines (45 loc) · 1.22 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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
builds:
- goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
# Part of making this a reproducible build
# https://goreleaser.com/customization/builds/#reproducible-builds
flags:
- -trimpath
mod_timestamp: ""
env:
# Make a static binary
# https://stackoverflow.com/a/64531740/7733616
- CGO_ENABLED=0
archives:
- format: binary
brews:
- tap:
owner: egineering-llc
name: get-jwt
description: A helper utility to make it easier to get a JWT
homepage: https://github.com/egineering-llc/get-jwt
license: Apache2
commit_msg_template: "chore: Update Brew formula for version {{ .Tag }}"
# https://goreleaser.com/customization/changelog/
changelog:
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: Bug fixes
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Build/release process
regexp: '^.*?ci(\([[:word:]]+\))??!?:.+$'
order: 2
- title: Documentation
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
order: 3
- title: Others
order: 999