-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
75 lines (68 loc) · 1.65 KB
/
Copy path.goreleaser.yaml
File metadata and controls
75 lines (68 loc) · 1.65 KB
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
version: 2
project_name: lstk
before:
hooks:
- go mod tidy
- mkdir -p completions
- sh -c "go run . completion bash > completions/lstk.bash"
- sh -c "go run . completion zsh > completions/lstk.zsh"
- sh -c "go run . completion fish > completions/lstk.fish"
- mkdir -p manpages
- sh -c "go run . docs --format man --dir ./manpages"
builds:
- id: lstk
main: ./main.go
binary: lstk
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
flags:
- -trimpath
ldflags:
- -s -w -X github.com/localstack/lstk/internal/version.version={{ .Version }}
archives:
- id: lstk
ids:
- lstk
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
files:
- completions/*
- manpages/*
checksum:
name_template: checksums.txt
changelog:
use: github-native
homebrew_casks:
- name: lstk
directory: Casks
repository:
owner: localstack
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
homepage: https://github.com/localstack/lstk
description: "LocalStack CLI v2 - Start and manage LocalStack emulators"
license: Apache-2.0
url:
verified: github.com/localstack/lstk
completions:
bash: completions/lstk.bash
zsh: completions/lstk.zsh
fish: completions/lstk.fish
hooks:
post:
install: |
if OS.mac?
system_command "/usr/bin/xattr", args: ["-dr", "com.apple.quarantine", "#{staged_path}/lstk"]
end