From 54c967cb76cf21935a019e670b9b65a6e7d67d37 Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Tue, 1 Jul 2025 09:11:58 +0200 Subject: [PATCH] ci: Fix location of conditional build tags This allows the components to be found again after the move in d5c63dd2922 ("ci: split long containers build yaml"). Signed-off-by: Valentine Burley Part-of: --- bin/ci/update_tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ci/update_tag.py b/bin/ci/update_tag.py index 875150f8a08..c115d37a0d2 100755 --- a/bin/ci/update_tag.py +++ b/bin/ci/update_tag.py @@ -44,7 +44,7 @@ class ProjectPaths: self.setup_test_env = self.root / ".gitlab-ci" / "setup-test-env.sh" self.conditional_tags = self.root / ".gitlab-ci" / "conditional-build-image-tags.yml" self.container_dir = self.root / ".gitlab-ci" / "container" - self.container_ci = self.container_dir / "gitlab-ci.yml" + self.container_ci = self.container_dir / "gitlab-ci-inc.yml" def find_root(self) -> Path: """Find git repository root or fallback to other methods"""