forked from busser/tfautomv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
57 lines (57 loc) · 1.38 KB
/
.goreleaser.yaml
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
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
main: ./
binary: tfautomv
archives:
- format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
prerelease: auto
brews:
- name: tfautomv
homepage: https://github.com/busser/tfautomv
description: Generate Terraform moved blocks automatically for painless refactoring
license: Apache-2.0
repository:
owner: busser
name: homebrew-tap
install: |
bin.install "tfautomv"
test: |
system "#{bin}/tfautomv -version"
aurs:
- name: tfautomv-bin
homepage: https://github.com/busser/tfautomv
description: Generate Terraform moved blocks automatically for painless refactoring
maintainers:
- Arthur Busser <arthur dot busser at gmail dot com>
private_key: "{{ .Env.AUR_KEY }}"
license: Apache-2.0
git_url: "ssh://aur@aur.archlinux.org/tfautomv-bin.git"
skip_upload: auto
provides:
- tfautomv
optdepends:
- "terraform: for running Terraform"
package: |-
install -Dm755 "./tfautomv" "$pkgdir/usr/bin/tfautomv"
install -Dm644 "./LICENSE" "$pkgdir/usr/share/licenses/tfautomv/LICENSE"