Skip to content

Commit 8def1b9

Browse files
committed
Test archiving command without publishing to marketplace
Signed-off-by: Denis Golovin <dgolovin@redhat.com>
1 parent 8b75a21 commit 8def1b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ node('rhel7'){
5252
stage("Publish to Marketplace") {
5353
withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
5454
def vsix = findFiles(glob: '**.vsix')
55-
sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
55+
// sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
5656
}
57-
archive includes:"**.vsix*","**.tgz*"
5857

5958
stage "Promote the build to stable"
6059
sh "rsync -Pzrlt --rsh=ssh --protocol=28 *.vsix* ${UPLOAD_LOCATION}/stable/vscode-openshift-tools/"
6160
sh "rsync -Pzrlt --rsh=ssh --protocol=28 *.tgz* ${UPLOAD_LOCATION}/stable/vscode-openshift-tools/"
61+
archive includes:"**.vsix*,**.tgz*"
6262
}
6363
}
6464
}

0 commit comments

Comments
 (0)