fix(pipeline): update SemanticReleasingExecutor to accept Git credentials ID as a parameter

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

View File

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