forked from tilt-dev/tilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
89 lines (88 loc) · 2.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
project_name: tilt
builds:
- main: ./cmd/tilt/main.go
id: tilt-darwin
flags:
- -tags=osusergo
- -mod=vendor
goos:
- darwin
goarch:
- amd64
- arm
- arm64
env:
# Compiles against the MacOS FSEvents system libraries.
- CGO_ENABLED=1
- CC=/osxcross/target/bin/x86_64h-apple-darwin14-clang
- main: ./cmd/tilt/main.go
id: tilt
flags:
- -tags=osusergo
- -mod=vendor
goos:
- linux
- windows
goarch:
- amd64
- arm
- arm64
env:
- CGO_ENABLED=0
archives:
- name_template: "{{ .ProjectName }}.{{ .Version }}.{{ .Os }}.{{ .Arch }}"
replacements:
windows: windows
darwin: mac
linux: linux
386: i386
amd64: x86_64
arm: arm_ALPHA
arm64: arm64_ALPHA
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- tap:
owner: tilt-dev
name: homebrew-tap
commit_author:
name: Tilt Dev
email: hi@tilt.dev
url_template: "http://github.com/tilt-dev/tilt/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://tilt.dev/"
description: "Tilt powers multi-service developments for teams that deploy to Kubernetes."
test: |
system "#{bin}/tilt version"
system "#{bin}/tilt verify-install"
dockers:
- image_templates:
- "tiltdev/tilt"
- "tiltdev/tilt:{{ .Tag }}"
dockerfile: scripts/tilt.Dockerfile
scoop:
url_template: "http://github.com/tilt-dev/tilt/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: tilt-dev
name: scoop-bucket
commit_author:
name: Tilt Dev
email: hi@tilt.dev
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://tilt.dev/"
description: "Tilt powers multi-service developments for teams that deploy to Kubernetes."
license: Apache-2.0
# Uncomment these lines if you want to experiment with other
# parts of the release process without releasing new binaries.
# release:
# disable: true