Jenkinsfile - v.6

This commit is contained in:
s416122 2020-04-03 13:58:27 +02:00
parent ae25965242
commit 1436dd3999

6
Jenkinsfile vendored
View File

@ -18,6 +18,10 @@ pipeline {
sh('./shell_script.sh wikiniews_results.tsv > result.txt')
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'result.txt'
}
}
}
}