From 2edda6bf8ed3476febe97ec72e25cda0877dfba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=8C=AF=E5=AE=87?= <> Date: Mon, 10 Feb 2025 05:46:31 +0800 Subject: [PATCH] fix(pipeline): update stash includes pattern to correctly include all files in subdirectories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 孙振宇 <> --- first-class-pipeline/vars/executeFreeleapsPipeline.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first-class-pipeline/vars/executeFreeleapsPipeline.groovy b/first-class-pipeline/vars/executeFreeleapsPipeline.groovy index f84efedd..b4674d36 100644 --- a/first-class-pipeline/vars/executeFreeleapsPipeline.groovy +++ b/first-class-pipeline/vars/executeFreeleapsPipeline.groovy @@ -333,7 +333,7 @@ def generateComponentStages(component, configurations) { returnStdout: true ) if (artifact == '.' || artifact == './') { - stash includes: "./*", name: "${component.name}-root" + stash includes: "./**", name: "${component.name}-root" } else if (targetPathType.trim() == "dir") { stash includes: "${artifact}/**", name: "${component.name}-${artifact}" } else {