Jenkinsfile update

This commit is contained in:
Damian Michalski 2020-04-03 13:12:56 +02:00
parent d4e97af54a
commit af9ddff46e

4
Jenkinsfile vendored
View File

@ -16,9 +16,9 @@ pipeline {
sh label: 'count lines', script: './count.sh'
}
}
stage('Archive') {
stage('Archive artifacts') {
steps {
archive './**'
archiveArtifacts 'result.txt'
}
}
}