Skip to content

Commit

Permalink
Update GoReleaser config for FreeBSD support
Browse files Browse the repository at this point in the history
  • Loading branch information
murat-cileli committed Jun 21, 2024
1 parent a74329b commit c482ab9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ builds:
- linux
- windows
- darwin
- freebsd
dir: src
ignore:
- goos: linux
Expand All @@ -22,16 +23,20 @@ builds:
goarch: arm64
- goos: windows
goarch: arm
- goos: freebsd
goarch: arm64
- goos: freebsd
goarch: arm

archives:
- format: tar.gz
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Os "darwin" }}macos
{{- else }}{{ .Os }}{{ end }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
- goos: windows
format: zip
Expand All @@ -42,7 +47,7 @@ nfpms:
package_name: dbee
homepage: https://github.com/murat-cileli/dbee
description: |-
Terminal based database browser.
Fast & Minimalistic Database Browser
maintainer: Murat Cileli <[email protected]>
license: GNU GPL v3
vendor: Murat Cileli
Expand Down

0 comments on commit c482ab9

Please sign in to comment.