This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.goreleaser.yml
67 lines (61 loc) · 1.52 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
---
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
changelog:
filters:
exclude:
- '^docs:'
- '^test:'
- "^ci:"
- "typo"
aurs:
- name: "devc-bin"
homepage: "https://github.con/nikaro/devc"
description: "CLI tool to manage your devcontainers."
maintainers:
- "Nicolas Karolak <nicolas at karolak dot fr>"
license: "GPLv3"
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://[email protected]/devc-bin.git"
package: |-
install -Dm755 "./devc" "${pkgdir}/usr/bin/devc"
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/devc/LICENSE"
install -Dm644 "./man/devc*.1" "${pkgdir}/usr/share/man/man1/"
brews:
- name: "devc"
homepage: "https://github.con/nikaro/devc"
description: "CLI tool to manage your devcontainers"
license: "GPL-3.0-or-later"
tap:
owner: "nikaro"
name: "homebrew-tap"
token: "{{ .Env.GH_PAT }}"
folder: "Formula"
test: |-
system "#{bin}/devc", "--help"
nfpms:
- package_name: "devc"
homepage: "https://github.con/nikaro/devc"
description: "CLI tool to manage your devcontainers."
maintainer: "Nicolas Karolak <[email protected]>"
license: "GPLv3"
formats:
- "apk"
- "deb"
- "rpm"
contents:
- src: "LICENSE"
dst: "/usr/share/licenses/devc/LICENSE"
- src: "man/devc*.1"
dst: "/usr/share/man/man1/"