diff --git a/Jenkinsfile b/Jenkinsfile index 31373b8..6b79f7b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,12 +20,10 @@ pipeline { stage('run script') { steps{ sh 'sh test.sh text.txt out.txt' - archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md' + archiveArtifacts artifacts: 'out.txt' } } - - } }