-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yml
54 lines (43 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
project_name: ordbase
builds:
- # You can have multiple builds defined as a yaml list
# Binary name.
# Can be a path (e.g. `bin/app`) to wrap the binary in a directory.
# Default is the name of the project directory.
binary: ordbased
# GOOS list to build for.
# For more info refer to: https://golang.org/doc/install/source#environment
# Defaults are darwin and linux.
goos:
- linux
- windows
- darwin
# - freebsd
# GOARCH to build for.
# For more info refer to: https://golang.org/doc/install/source#environment
# Defaults are 386, amd64 and arm64.
goarch:
- amd64
- arm ## used by rasberry - linux arm 32-bit
- arm64
# Optionally override the matrix generation and specify only the final list of targets.
# Format is `{goos}_{goarch}` with optionally a suffix with `_{goarm}` or `_{gomips}`.
# This overrides `goos`, `goarch`, `goarm`, `gomips` and `ignores`.
targets:
- linux_amd64
- linux_arm # rasberry - linux arm 32-bit
- windows_amd64
- darwin_amd64
- darwin_arm64
# - freebsd_amd64
archives:
-
# change darwin - to macos or such - why? why not?
# Can be used to change the archive formats for specific GOOS.
format_overrides:
- goos: windows
format: zip
replacements:
amd64: 64bit
386: 32bit
darwin: macos