Skip to content

Commit ba6406d

Browse files
committed
Create .goreleaser.yml
1 parent 7089e53 commit ba6406d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.goreleaser.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# .goreleaser.yml
2+
builds:
3+
# You can have multiple builds defined as a yaml list
4+
-
5+
# GOOS list to build for.
6+
# For more info refer to: https://golang.org/doc/install/source#environment
7+
# Defaults are darwin and linux.
8+
goos:
9+
- linux
10+
11+
# GOARCH to build for.
12+
# For more info refer to: https://golang.org/doc/install/source#environment
13+
# Defaults are 386, amd64 and arm64.
14+
goarch:
15+
- amd64
16+
17+
# Optionally override the matrix generation and specify only the final list of targets.
18+
# Format is `{goos}_{goarch}` with optionally a suffix with `_{goarm}` or `_{gomips}`.
19+
# This overrides `goos`, `goarch`, `goarm`, `gomips` and `ignores`.
20+
targets:
21+
- linux_amd64

0 commit comments

Comments
 (0)