From b6a3dc55c2ae0502e054d3a7f4ee6f05ce8eefe4 Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Fri, 20 Jan 2023 10:28:53 -0800 Subject: [PATCH] [chore] update release build job to trigger on v* tag push (#6976) In the last 3 releases, this job has created a release for the cmd/builder/v* tag, which caused an issue in the release process and introduced additional manual steps. An alternative to this would be to create two releases, one for the builder and one for the collector, but that seems overkill at this point. Fix #6849 Signed-off-by: Alex Boten Signed-off-by: Alex Boten --- .github/workflows/builder-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/builder-release.yaml b/.github/workflows/builder-release.yaml index bb83782f2a3..d65ce9a37d8 100644 --- a/.github/workflows/builder-release.yaml +++ b/.github/workflows/builder-release.yaml @@ -3,7 +3,7 @@ name: Builder - Release on: push: tags: - - 'cmd/builder/v*' + - 'v*' jobs: goreleaser: