From 87b8cbb377c7162d6608d2481e2a0694d4b395ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=8C=AF=E5=AE=87?= <> Date: Sat, 8 Feb 2025 10:33:02 +0800 Subject: [PATCH] fix(pipeline): update SemanticReleasingExecutor to accept Git credentials ID as a parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 孙振宇 <> --- first-class-pipeline/vars/executeFreeleapsPipeline.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/first-class-pipeline/vars/executeFreeleapsPipeline.groovy b/first-class-pipeline/vars/executeFreeleapsPipeline.groovy index 53f2192d..49282eea 100644 --- a/first-class-pipeline/vars/executeFreeleapsPipeline.groovy +++ b/first-class-pipeline/vars/executeFreeleapsPipeline.groovy @@ -265,8 +265,8 @@ def generateComponentStages(component, configurations) { def sourceFetcher = new SourceFetcher(this) sourceFetcher.fetch(configurations) - def semanticReleasingExecutor = new SemanticReleasingExecutor(this, env.workroot, configurations.serviceGitCredentialsId) - semanticReleasingExecutor.release() + def semanticReleasingExecutor = new SemanticReleasingExecutor(this, env.workroot) + semanticReleasingExecutor.release(configurations.serviceGitCredentialsId) } } }