Fix Jenkinsfile.dvc

This commit is contained in:
Kamil Guttmann 2022-06-05 16:17:40 +02:00
parent 42c95f5a82
commit 194e61d491

View File

@ -9,6 +9,7 @@ pipeline {
}
}
stage("DVC"){
steps {
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) {
sh 'dvc remote modify --local ium_ssh_remote keyfile $IUM_SFTP_KEY'
sh "dvc pull"
@ -16,4 +17,5 @@ pipeline {
}
}
}
}
}