From cc34f32be9f573d44c893e853d42fb58e6dd9239 Mon Sep 17 00:00:00 2001 From: Cody Lee Date: Wed, 11 Feb 2026 10:42:41 -0600 Subject: [PATCH] fix(release): replace deprecated 'folder' field with 'directory' in GoReleaser config The 'folder' field in the homebrew brew configuration was deprecated in GoReleaser v2.x and replaced with 'directory'. This was causing the release workflow to fail with: "field folder not found in type config.Homebrew" Changes: - Updated .goreleaser.yml:169 to use 'directory' instead of 'folder' Fixes release workflow failure in run #21913974032 Co-Authored-By: Claude Sonnet 4.5 --- .goreleaser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index c2b79ae7..3077b821 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -166,7 +166,7 @@ brews: homepage: https://github.com/DataDog/pup description: "Datadog API CLI - OAuth2 + API key authentication for Datadog APIs" license: Apache-2.0 - folder: Formula + directory: Formula commit_author: name: goreleaserbot email: bot@goreleaser.com