From b63644af798f499ccee86cb0ebb006192ed7c07f Mon Sep 17 00:00:00 2001 From: Richard Carillo Date: Mon, 27 Apr 2026 14:58:07 -0400 Subject: [PATCH] fix(goreleaser): replace deprecated archives.builds and archives.format properties --- .goreleaser.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index e70c0a041..411f32726 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -55,23 +55,23 @@ builds: # https://goreleaser.com/customization/archive/ archives: - id: nix - builds: [macos, linux] + ids: [macos, linux] <<: &archive_defaults name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" files: - none* wrap_in_directory: false - format: tar.gz + formats: [tar.gz] - id: windows-tar - builds: [windows] + ids: [windows] <<: *archive_defaults wrap_in_directory: false - format: tar.gz + formats: [tar.gz] - id: windows-zip - builds: [windows] + ids: [windows] <<: *archive_defaults wrap_in_directory: false - format: zip + formats: [zip] # https://goreleaser.com/customization/aur/ aurs: - homepage: "https://github.com/fastly/cli"