From 06e574796f0a985aa8c5d501e9f508f09d63e4e7 Mon Sep 17 00:00:00 2001 From: Evgeny Torbin Date: Tue, 18 Nov 2025 10:14:21 +0100 Subject: [PATCH] ci: update artifact pattern for size.json --- .gitlab/ci/build.yml | 4 ++-- .idf_ci.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/ci/build.yml b/.gitlab/ci/build.yml index a4d09b9d8d..ac25f22f06 100644 --- a/.gitlab/ci/build.yml +++ b/.gitlab/ci/build.yml @@ -28,7 +28,7 @@ - "**/build*/build_log.txt" # keep the size info to help track the binary size - size_info.txt - - "**/build*/size.json" + - "**/build*/size*.json" expire_in: 1 week when: always variables: @@ -62,7 +62,7 @@ paths: - log_template_app/* - size_info.txt - - build_template_app/**/size.json + - build_template_app/**/size*.json expire_in: 1 week when: always script: diff --git a/.idf_ci.toml b/.idf_ci.toml index 7e1e802f5c..835a8552d1 100644 --- a/.idf_ci.toml +++ b/.idf_ci.toml @@ -101,5 +101,5 @@ patterns = [ bucket = "longterm" if_clause = '"$CI_COMMIT_REF_NAME" == "master"' patterns = [ - '**/build*/size.json', + '**/build*/size*.json', ]