ium_452627/Jenkinsfile_6
2023-05-13 18:37:26 +02:00

22 lines
502 B
Plaintext

pipeline {
agent {
dockerfile {
filename "Dockerfile_4"
}
}
stages {
stage('DVC Commands') {
steps {
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_KEY'
}
}
}
stage('Archive Output') {
steps {
archiveArtifacts 'metrics.txt'
}
}
}
}