From 4730bbdc1fe7f29851c0b74448d119e246eb8fab Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Thu, 11 Sep 2025 11:12:24 +0200 Subject: [PATCH] feat(ci): add condition for tag handling in CI pipeline Includes a new condition in the CI pipeline to handle situations where the commit is a tag. This improves the robustness of the pipeline by ensuring that specific actions are only executed for tagged commits, thereby optimizing the release process. --- Release.gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Release.gitlab-ci.yml b/Release.gitlab-ci.yml index 0482ad7..54e69e8 100644 --- a/Release.gitlab-ci.yml +++ b/Release.gitlab-ci.yml @@ -185,6 +185,7 @@ unbound_release_prepare_release: - if: $CI_COMMIT_TAG == null && $CI_DEFAULT_BRANCH != $CI_COMMIT_BRANCH when: never - if: $CI_DEFAULT_BRANCH == $CI_COMMIT_BRANCH + - if: $CI_COMMIT_TAG unbound_release_create_release: stage: .pre -- 2.52.0