Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: remove deprecated fields in the goreleaser file #731

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ docker_signs:
- '${artifact}'

brews:
- tap:
- repository:
owner: dirien
name: homebrew-dirien

Expand All @@ -126,7 +126,13 @@ archives:
format: zip

nfpms:
- file_name_template: "minectl-{{.Version}}_{{.Os}}-{{.Arch}}"
- file_name_template: >-
{{- .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end -}}
homepage: https://github.com/dirien/minectl
description: "minectl️️ 🗺️ is a cli for creating Minecraft (java or bedrock) server on different cloud provider."
maintainer: "Engin Diri [email protected]"
Expand All @@ -137,14 +143,6 @@ nfpms:
- deb
- apk
bindir: /usr/bin
replacements:
amd64: 64bit
386: 32bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Linux
windows: Windows

changelog:
sort: asc
Expand Down