From 48bd47b1ae249fc1989fca4f65686320dd3b5388 Mon Sep 17 00:00:00 2001 From: James Lucktaylor Date: Thu, 2 Mar 2023 17:43:16 +0000 Subject: [PATCH] build(goreleaser): remove deprecated things --- .goreleaser.yaml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index f58ed79..dff5c1f 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -24,15 +24,25 @@ builds: # List of combinations of GOOS + GOARCH + GOARM to ignore. # Default is empty. ignore: - - goos: darwin - goarch: "386" + - goarch: "386" + + - goos: linux + goarch: arm + goarm: 7 + + - goarm: mips64 + + - gomips: hardfloat + + - goamd64: v4 # Set the modified timestamp on the output binary, typically you would do this to ensure a build was reproducible. # Pass empty string to skip modifying the output. mod_timestamp: "{{ .CommitTimestamp }}" archives: - - replacements: + - name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" + replacements: 386: i386 amd64: x86_64 darwin: Darwin