forked from voxpupuli/openvoxview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
54 lines (54 loc) · 1.06 KB
/
.goreleaser.yml
File metadata and controls
54 lines (54 loc) · 1.06 KB
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
before:
hooks:
- go mod download
- make ui
archives:
- id: openvoxview
builds:
- id: openvoxview
ldflags: -s -w -X 'main.VERSION={{.Version}}' -X 'main.COMMIT={{.Commit}}'
env:
- CGO_ENABLED=0
- GIN_MODE=release
goos:
- linux
- freebsd
goarch:
- amd64
- arm
- arm64
goarm:
- "6"
- "7"
nfpms:
- vendor: Vox Pupuli
homepage: https://github.com/voxpupuli/openvoxview
maintainer: Vox Pupuli <voxpupuli@groups.io>
description: |-
PuppetDB Dashboard
license: Apache 2.0
formats:
- deb
- rpm
dockers_v2:
- images:
- "ghcr.io/voxpupuli/{{ .ProjectName }}"
dockerfile: Containerfile.release
platforms:
- linux/amd64
release:
github:
owner: voxpupuli
name: openvoxview
name_template: "Release v{{.Version}}"
prerelease: auto
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'