-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
dev.goreleaser.yaml
39 lines (35 loc) · 1.13 KB
/
dev.goreleaser.yaml
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
builds:
- env:
# goreleaser does not work with CGO, it could also complicate
# usage by users in CI/CD systems like Terraform Cloud where
# they are unable to install libraries.
- CGO_ENABLED=0
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- darwin
- freebsd
- windows
- linux
goarch:
- amd64
- '386'
- arm
- arm64
ldflags:
# -s Omit the symbol table and debug information
# -w Omit the DWARF symbol table
# -X importpath.name=value # set the value of the string variable in importpath named name to value
# Someday we could implement a "version" command and set the version like this:
# - '-s -w -X "github.com/cloudposse/slack-notifier/cmd.Version={{.Env.GORELEASER_CURRENT_TAG}}"'
- '-s -w'
archives:
- format: binary
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
algorithm: sha256
release:
# If you want to manually examine the release before it is live, uncomment this line:
# draft: true
changelog:
skip: true