From e8885400e66bdb9304f99d9b072aa4dec4e83f4b Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 27 Jun 2025 15:24:55 +0100 Subject: [PATCH] fix(builder/plan): append test build name to release name (#138) --- pkg/plan/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plan/create.go b/pkg/plan/create.go index 3069da3..c25e249 100644 --- a/pkg/plan/create.go +++ b/pkg/plan/create.go @@ -146,7 +146,7 @@ func Create(ctx context.Context, opts *Options) (*Plan, error) { //nolint:funlen plan.Build.Name += ".test." + testName plan.Release.Title = "Test Builds (" + testName + ")" - plan.Release.Name = "test-builds" + plan.Release.Name = "test-builds-" + testName plan.Release.Prerelease = false plan.Release.Draft = true