-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.goreleaser.yml
More file actions
40 lines (34 loc) · 901 Bytes
/
Copy path.goreleaser.yml
File metadata and controls
40 lines (34 loc) · 901 Bytes
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
version: 2
project_name: 'urlzap'
builds:
- main: './cmd/urlzap/main.go'
binary: 'urlzap'
goos: ['linux', 'darwin', 'windows']
goarch: ['amd64', 'arm64']
changelog:
sort: 'asc'
filters:
exclude: ['^docs:', '^test:', 'Merge pull request', 'Merge branch']
archives:
- format_overrides:
- goos: 'windows'
formats: ['zip']
nfpms:
- formats: ['deb', 'rpm']
maintainer: 'Bruno Luiz Silva <dev@brunoluiz.net>'
dependencies: ['git']
# dockers:
# - image_templates:
# - 'brunoluiz/urlzap:{{ .Tag }}'
# - 'brunoluiz/urlzap:v{{ .Major }}.{{ .Minor }}'
# - 'brunoluiz/urlzap:latest'
# dockerfile: 'Dockerfile.prod'
# binaries:
# - 'urlzap'
brews:
- name: urlzap
repository:
owner: brunoluiz
name: urlzap
directory: Formula
commit_msg_template: "chore: update brew formula for {{ .ProjectName }} {{ .Tag }}"