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) } } }