-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yaml
95 lines (80 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
-
binary: ninja-lang
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
- "386"
archives:
- name_template: "{{.Binary}}_{{.Os}}_{{.Arch}}"
release:
draft: false
github:
owner: gravataLonga
name: ninja
header: |
## New Release {{ .Tag }} ({{ .Date }})
Check changelog for get complete list of new feature, bugfixes and security issues.
footer: |
## Supporting me
If you like it consider support me at https://github.com/sponsors/gravataLonga.
checksum:
name_template: 'checksums.txt'
nfpms:
- vendor: gravataLonga
package_name: ninja-lang
homepage: https://ninja.jonathan.pt
maintainer: Jonathan Fontes <[email protected]>
description: Ninja Programming Language
license: MIT
formats:
- apk
- deb
- rpm
id: packages
file_name_template: "{{ .ConventionalFileName }}"
brews:
-
name: ninja-lang
tap:
owner: gravataLonga
name: homebrew-ninja-lang
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: Jonathan Fontes
email: [email protected]
commit_msg_template: "New version for {{ .ProjectName }} version {{ .Tag }}"
folder: Formula
description: "Ninja Programming Language Binary"
homepage: "https://ninja.jonathan.pt/"
license: "MIT"
snapshot:
name_template: "{{.Tag}}"
publishers:
- name: fury.io
ids:
- packages
dir: "{{ dir .ArtifactPath }}"
cmd: curl -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/gravatalonga/
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^wip:'
- '^WIP:'