This repository has been archived by the owner on Sep 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.goreleaser.yml
76 lines (62 loc) · 1.61 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
# Configuration file for GoReleaser - https://goreleaser.com/build/
builds:
- env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
archives:
-
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
replacements:
darwin: Darwin
linux: Linux
windows: Windows
amd64: x86_64
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- none*
changelog:
filters:
exclude:
- '^Update .+ commit hash to'
- '^Update module .+ to'
- '^Automated: Bump Docker images'
- '^Release v\d\.\d\.\d(-\w+)?$'
snapcrafts:
-
name_template: "qlik-{{ .ProjectName }}-{{ .Version }}-{{ .Arch }}"
name: qlik-corectl
publish: true
summary: A command line interface tool for the Qlik Associative Engine
description: |
Qlik Core Control (corectl) is a tool that delivers a
command line interface (CLI) for the Qlik Associative Engine.
With corectl you can interact with your apps, objects, and data.
grade: stable
confinement: strict
apps:
corectl:
plugs: ["home", "network"]
brews:
-
name: qlik-corectl
github:
owner: qlik-oss
name: homebrew-taps
commit_author:
name: qlikossbuild
email: [email protected]
folder: Formula
homepage: "https://github.com/qlik-oss/corectl"
description: "corectl is a CLI tool for using Qlik Associative Engine."
test: |
assert_equal "corectl version: #{version}", shell_output("#{bin}/corectl version").chomp
install: |
bin.install "corectl"