-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.goreleaser.yml
41 lines (38 loc) · 921 Bytes
/
.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
builds:
- env:
- CGO_ENABLED=0
binary: devcontainerx
goos:
- linux
- darwin
- windows
goarch:
- 386
- amd64
main: ./cmd/devcontainerx/
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}} -X "main.goversion={{.Env.GOVERSION}}"
archives:
- id: zip
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
format_overrides:
- goos: windows
format: zip
brews:
- tap:
owner: stuartleeks
name: homebrew-tap
folder: Formula
name: devcontainer
homepage: https://github.com/stuartleeks/devcontainer-cli
description: CLI for working with Visual Studio Code devcontainers
install: |
bin.install "devcontainerx"
test: |
system "#{bin}/devcontainerx --version"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'