forked from tilt-dev/tilt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
49 lines (48 loc) · 1.13 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
project_name: tilt
before:
hooks:
- ./scripts/upload-assets.py latest
builds:
- env:
main: ./cmd/tilt/main.go
goos:
- linux
- darwin
# Cross-compiling darwin is a pain due to fsevents,
# and we don't expect darwin/386 users anyway.
ignore:
- goos: darwin
goarch: 386
archive:
name_template: "{{ .ProjectName }}.{{ .Version }}.{{ .Os }}.{{ .Arch }}"
replacements:
darwin: mac
linux: linux
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brew:
github:
owner: windmilleng
name: homebrew-tap
commit_author:
name: Windmill Engineering
email: [email protected]
url_template: "http://github.com/windmilleng/tilt/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://tilt.build/"
description: "Local Kubernetes development with no stress"
test: |
system "#{bin}/tilt version"
# Uncomment these lines if you want to experiment with other
# parts of the release process without releasing new binaries.
# release:
# disable: true