-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
77 lines (69 loc) · 1.4 KB
/
Copy path.goreleaser.yml
File metadata and controls
77 lines (69 loc) · 1.4 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
76
77
# GoReleaser config for SideGuard release binaries.
# See docs/plans/2026-07-02-1102-github-update/vgu-phase-1.0-release-ci.md
version: 2
project_name: sideguard
builds:
- id: darwin
main: ./cmd/sideguard
binary: sideguard
env:
- CGO_ENABLED=1
goos:
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w
- -X github.com/alisaitteke/sideguard/cmd/sideguard/cmd.Version={{.Version}}
- id: linux
main: ./cmd/sideguard
binary: sideguard
env:
- CGO_ENABLED=1
goos:
- linux
goarch:
- amd64
- arm64
ldflags:
- -s -w
- -X github.com/alisaitteke/sideguard/cmd/sideguard/cmd.Version={{.Version}}
- id: windows
main: ./cmd/sideguard
binary: sideguard
env:
- CGO_ENABLED=1
goos:
- windows
goarch:
- amd64
ldflags:
- -s -w
- -X github.com/alisaitteke/sideguard/cmd/sideguard/cmd.Version={{.Version}}
archives:
- id: default
formats:
- tar.gz
name_template: "sideguard_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
formats:
- zip
files:
- none*
checksum:
name_template: checksums.txt
algorithm: sha256
release:
github:
owner: alisaitteke
name: sideguard
draft: false
prerelease: auto
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"