From e3bd539280dfcea1d31978e48e8f62f2b138d5a5 Mon Sep 17 00:00:00 2001 From: Evgeny Torbin Date: Tue, 25 Nov 2025 10:42:33 +0100 Subject: [PATCH] ci: fix if clause in `.idf_ci.toml` --- .idf_ci.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.idf_ci.toml b/.idf_ci.toml index e16384aab8..6866454fca 100644 --- a/.idf_ci.toml +++ b/.idf_ci.toml @@ -100,7 +100,7 @@ patterns = [ [gitlab.artifacts.s3.longterm] bucket = "longterm" -if_clause = '"$CI_COMMIT_REF_NAME" == "master"' +if_clause = 'CI_COMMIT_REF_NAME == "master"' patterns = [ '**/build*/size*.json', ]