s407259-mlworkshops/Jenkinsfile

12 lines
290 B
Plaintext
Raw Normal View History

2019-04-26 10:52:29 +02:00
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
filter: "packages/infra*.zip",
target: 'Infra']);
}
}
2019-04-26 10:53:52 +02:00
}
2019-04-26 10:52:29 +02:00
}