-
Notifications
You must be signed in to change notification settings - Fork 47
/
.goreleaser.yml
45 lines (45 loc) · 1.07 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
---
project_name: docker-machine-driver-vmware
before:
hooks:
- go mod tidy
# you may remove this if you don't need go generate
# - go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
archives:
- id: github
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
format: tar.gz
files:
- LICENSE*
- README*
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^typo'
- 'version bump'
brews:
- folder: Formula
tap:
owner: mikeroySoft
name: homebrew-tap
commit_author:
name: Michael Roy
email: mike@mikeroysoft.com
homepage: "https://github.com/machine-drivers/docker-machine-driver-vmware/blob/master/README.md"
description: "Cross-platform docker-machine driver for VMware Fusion and Workstation"
test: |
system "#{bin}/docker-machine-driver-vmware -v"
install: |
bin.install "docker-machine-driver-vmware"