-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.goreleaser.yml
99 lines (98 loc) · 2.39 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
version: 2
before:
hooks:
- go mod download
builds:
-
main: ./cmd/main.go
ldflags:
- -s -w
- -X main.Version={{ .Version }}
- -X main.Build={{ .Commit }}
- -X main.BuildDate={{ .Date }}
- -X main.License={{ .Date }}
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
- 386
- riscv64
goarm:
- 5
- 6
- 7
dockers:
-
image_templates: ["ghcr.io/cian911/{{ .ProjectName }}:{{ .Version }}"]
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/cian911/{{ .ProjectName }}
- --label=org.opencontainers.image.source=https://github.com/cian911/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=GPL-3.0
archives:
-
id: switchboard
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^typo|TYPO'
- typo
- Merge pull request
- Merge remote-tracking branch
- Merge branch
groups:
- title: 'New Features'
regexp: "^.*FEAT|WATCHER|CLI|EVENT|UTILS|CMD[(\\w)]*:+.*$"
order: 0
- title: 'Fixes'
order: 10
regexp: "^.*FIX|CHORE|BUGFIX|EXAMPLES|BUG[(\\w)]*:+.*$"
- title: 'Workflow Updates'
regexp: "^.*ACTIONS|ACTION[(\\w)]*:+.*$"
order: 20
- title: 'Other things'
order: 999
nfpms:
-
vendor: Cian911
formats:
- deb
- rpm
- apk
brews:
-
goarm: 6
repository:
owner: Cian911
name: homebrew-switchboard
directory: Formula
commit_author:
name: Cian911
email: [email protected]
homepage: "https://github.com/Cian911/switchboard"
description: |
Automated file organisation and routing for all your machines.
artifactories:
- name: swb
mode: binary
target: 'https://switchboard.jfrog.io/artifactory/switchboard-debian/{{ .ProjectName }}/{{ .Version }}/{{ .Os }}/{{ .Arch }}{{ if .Arm }}{{ .Arm }}{{ end }}'
username: cian911-go