From 076d9fea0f09efee31bff6ac07a89c4b50ff126d Mon Sep 17 00:00:00 2001 From: Matthew Mols Date: Thu, 18 Dec 2025 15:01:21 -0600 Subject: [PATCH 1/2] fix: use annotated tag in release process to support gpg signing --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8d026d13..2d339aba 100644 --- a/Makefile +++ b/Makefile @@ -215,7 +215,7 @@ endif @echo -n "Are you sure? [y/N] " && read ans && [ $${ans:-N} == y ] git commit -m "build(release): bump version to $(VERSION)" git push origin release/$(VERSION) - git tag $(VERSION)-rc.1 + git tag -a -F changes/$(VERSION).md $(VERSION)-rc.1 git push origin $(VERSION)-rc.1 @echo "Go to https://github.com/pgEdge/control-plane/compare/release/$(VERSION)?expand=1 to open the release PR." From caeb3e96b379d8732cb4e00fa42bed04bde721a1 Mon Sep 17 00:00:00 2001 From: Matthew Mols Date: Thu, 18 Dec 2025 15:01:59 -0600 Subject: [PATCH 2/2] fix: explicitly set GORELEASER_CURRENT_TAG in release workflow --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f124b465..19d9d06c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -110,7 +110,7 @@ jobs: make buildx-init # create the github release - goreleaser release \ + GORELEASER_CURRENT_TAG=${CIRCLE_TAG} goreleaser release \ --release-notes=${release_notes} # log into control plane ECR repo