ium_452627/Jenkinsfile_5
2023-05-11 21:35:57 +02:00

14 lines
220 B
Plaintext

pipeline {
agent {
dockerfile {
filename "Dockerfile_3"
}
}
stages {
stage('Archive Output') {
steps {
archiveArtifacts 'my_runs/**/*.*'
}
}
}
}