Skip to content

Commit

Permalink
Merge pull request #62 from neicnordic/bugfix/build-release-libc
Browse files Browse the repository at this point in the history
Bugfix/build release libc linkage
  • Loading branch information
blankdots authored Mar 13, 2023
2 parents 64cc70f + 4d6df15 commit a7ccfab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,22 @@ builds:
- darwin
- linux
- windows
env:
- CGO_ENABLED=0
flags:
- -trimpath

archives:
-
replacements:
amd64: x86_64
386: i386

name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
- name_template: >-
{{ .ProjectName }}_
{{- tolower .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- "^docs:"
- "^test:"
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

// The version in the current branch
var Version = "1.7.1"
var Version = "1.7.3"

// If this is "" (empty string) then it means that it is a final release.
// Otherwise, this is a pre-release e.g. "dev", "beta", "rc1", etc.
Expand Down

0 comments on commit a7ccfab

Please sign in to comment.