-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.goreleaser.yml
55 lines (48 loc) · 1.16 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
# This is an example goreleaser.yaml file with some sane defaults. Make sure to
# check the documentation at http://goreleaser.com
version: 2
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
- arm64
checksum:
algorithm: sha384
name_template: SHA384SUMS
nfpms:
- id: default
maintainer: Jan Graichen <[email protected]>
description: Docker Volume Plugin for OpenStack Cinder
license: MIT License
formats:
- deb
- rpm
- apk
bindir: /usr/bin
contents:
- src: ./example/cinder.json
dst: /etc/docker/cinder.json
type: config
- src: ./example/docker-plugin-cinder.socket
dst: /etc/systemd/system/docker-plugin-cinder.socket
- src: ./example/docker-plugin-cinder.service
dst: /etc/systemd/system/docker-plugin-cinder.service
changelog:
use: github
groups:
- title: Changes
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: Fixes
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Others
order: 999
filters:
exclude:
- '^Merge pull request'
release:
draft: False