Fix jenkins dvc

This commit is contained in:
Wojciech Jarmosz 2021-06-12 22:17:18 +02:00
parent 24dbcd1ed2
commit 558f3546a0

View File

@ -5,6 +5,7 @@ pipeline {
parameters { parameters {
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH' gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
} }
stages {
stage('RUN DVC') { stage('RUN DVC') {
steps { steps {
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
@ -22,3 +23,4 @@ pipeline {
} }
} }
} }
}