Skip to content

Commit 6ec2244

Browse files
committed
Temporay fix to publish to Open-vsx marketplace
Signed-off-by: Denis Golovin [email protected]
1 parent 950473c commit 6ec2244

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Jenkinsfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,15 @@ node('rhel8'){
5353
}
5454

5555
stage("Publish to Marketplace") {
56-
withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
57-
def vsix = findFiles(glob: '**.vsix')
58-
sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
59-
}
56+
// withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
57+
// def vsix = findFiles(glob: '**.vsix')
58+
// sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
59+
// }
6060

6161
// Open-vsx Marketplace
6262
sh "npm install -g ovsx"
6363
withCredentials([[$class: 'StringBinding', credentialsId: 'open-vsx-access-token', variable: 'OVSX_TOKEN']]) {
64+
def vsix = findFiles(glob: '**.vsix')
6465
sh 'ovsx publish -p ${OVSX_TOKEN}' + " ${vsix[0].path}"
6566
}
6667

0 commit comments

Comments
 (0)