From 24b92fefc51e1537d920540e95aa2449e44999de Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 13 Feb 2026 17:15:14 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=B7=20ci(circleci):=20enhance=20ta?= =?UTF-8?q?g=20generation=20logic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add condition to handle empty package parameters for tagging - ensure consistent tag format whether package parameter is present or not Signed-off-by: Jeremiah Russell --- .circleci/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/release.yml b/.circleci/release.yml index cbe7c83..beffccd 100644 --- a/.circleci/release.yml +++ b/.circleci/release.yml @@ -91,7 +91,11 @@ commands: exit 0 fi - TAG="<< parameters.package >>-v${VERSION}" + if [ "" = "<< parameters.package >>" ]; then + TAG="v${VERSION}" + else + TAG="<< parameters.package >>-v${VERSION}" + fi # Fetch tags from remote git fetch --tags From 6615a84c255f3f15231cc0d365360e65f6459fdc Mon Sep 17 00:00:00 2001 From: Jerus Bot <171541392+jerus-bot@users.noreply.github.com> Date: Fri, 13 Feb 2026 17:20:33 +0000 Subject: [PATCH 2/2] chore: update prlog for pr Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com> --- PRLOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PRLOG.md b/PRLOG.md index b13744c..bb36bb2 100644 --- a/PRLOG.md +++ b/PRLOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 👷 ci(circleci)-update release workflow configuration(pr [#155]) - 👷 ci(circleci)-simplify nextsv version calculation(pr [#156]) - 👷 ci(circleci)-add kdeets installation step to release workflow(pr [#157]) +- 👷 ci(circleci)-enhance tag generation logic(pr [#158]) ### Fixed @@ -445,6 +446,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#155]: https://github.com/jerus-org/cull-gmail/pull/155 [#156]: https://github.com/jerus-org/cull-gmail/pull/156 [#157]: https://github.com/jerus-org/cull-gmail/pull/157 +[#158]: https://github.com/jerus-org/cull-gmail/pull/158 [Unreleased]: https://github.com/jerus-org/cull-gmail/compare/v0.0.16...HEAD [0.0.16]: https://github.com/jerus-org/cull-gmail/compare/v0.0.15...v0.0.16 [0.0.15]: https://github.com/jerus-org/cull-gmail/compare/v0.0.14...v0.0.15