feat(pipeline): pass service Git credentials ID to SemanticReleasingExecutor

Signed-off-by: 孙振宇 <>
This commit is contained in:
孙振宇 2025-02-08 10:25:39 +08:00
parent d8f04dda6d
commit 88e315647d

View File

@ -265,7 +265,7 @@ def generateComponentStages(component, configurations) {
def sourceFetcher = new SourceFetcher(this)
sourceFetcher.fetch(configurations)
def semanticReleasingExecutor = new SemanticReleasingExecutor(this, env.workroot)
def semanticReleasingExecutor = new SemanticReleasingExecutor(this, env.workroot, configurations.serviceGitCredentialsId)
semanticReleasingExecutor.release()
}
}