We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b75a21 commit 8def1b9Copy full SHA for 8def1b9
1 file changed
Jenkinsfile
@@ -52,13 +52,13 @@ node('rhel7'){
52
stage("Publish to Marketplace") {
53
withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
54
def vsix = findFiles(glob: '**.vsix')
55
- sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
+ // sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
56
}
57
- archive includes:"**.vsix*","**.tgz*"
58
59
stage "Promote the build to stable"
60
sh "rsync -Pzrlt --rsh=ssh --protocol=28 *.vsix* ${UPLOAD_LOCATION}/stable/vscode-openshift-tools/"
61
sh "rsync -Pzrlt --rsh=ssh --protocol=28 *.tgz* ${UPLOAD_LOCATION}/stable/vscode-openshift-tools/"
+ archive includes:"**.vsix*,**.tgz*"
62
63
64
0 commit comments