From d1f30e0ee6fab5ba3b29abbf40bcec7a2c3b3d2b Mon Sep 17 00:00:00 2001 From: Denis Golovin Date: Tue, 25 Feb 2020 11:27:46 -0800 Subject: [PATCH] Restore command to publish ext to vscode marketplace Signed-off-by: Denis Golovin --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d0713eeed..a4fb04fc3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -52,7 +52,7 @@ node('rhel7'){ stage("Publish to Marketplace") { withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) { def vsix = findFiles(glob: '**.vsix') - // sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}" + sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}" } stage "Promote the build to stable"