-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
75 lines (74 loc) · 1.58 KB
/
.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
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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 2
project_name: ska
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
ldflags:
- -s -w -X main.version={{.Version}}
release:
prerelease: auto
nfpms:
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}'
maintainer: [email protected]
homepage: https://ska.g-c.dev
description: >-
SKA is a CLI and Library to scaffold, maintain and update from upstream blueprint your projects.
license: MIT
formats:
- deb
- rpm
- apk
bindir: /usr/bin
section: utils
contents:
- src: ./LICENSE
dst: /usr/share/doc/nfpm/copyright
file_info:
mode: 0644
sboms:
- artifacts: archive
brews:
- repository:
owner: gchiesa
name: homebrew-ska
branch: main
token: "{{ .Env.SKA_HOMEBREW_TOKEN }}"
# yamllint disable-line rule:comments rule:line-length
url_template: https://github.com/gchiesa/ska/releases/download/{{ .Tag }}/{{ .ArtifactName }}
commit_author:
name: Giuseppe Chiesa
email: [email protected]
directory: Formula
homepage: https://github.com/gchiesa/ska
description: >-
SKA is a CLI and Library to scaffold, maintain and update from upstream blueprint your projects.
license: MIT
archives:
- wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
checksum:
name_template: checksums.txt
snapshot:
name_template: '{{ .Tag }}-next'
changelog:
disable: true
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^*.md:'