diff --git a/Jenkinsfile b/Jenkinsfile index d33bb01..31373b8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,18 +20,13 @@ pipeline { stage('run script') { steps{ sh 'sh test.sh text.txt out.txt' + archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md' } } } - - post { - always { - junit 'build/reports/out.txt' - } - } }