simplify it a little

pull/24/head
Adam Townsend 2023-10-16 17:18:06 -07:00
parent 3097cb69aa
commit 91f45965a0
1 changed files with 2 additions and 4 deletions

6
Jenkinsfile vendored
View File

@ -55,16 +55,14 @@ pipeline {
rm -rf /tmp/url-shortener/features /tmp/url-shortener/spec /tmp/url-shortener/coverage .git*
cd /tmp
tar -czvf url-shortener.tgz url-shortener/
mv url-shortener.tgz $CUR_DIR
'''
}
archiveArtifacts artifacts: 'url-shortener.tgz'
archiveArtifacts artifacts: '/tmp/url-shortener.tgz'
}
}
stage('Clean up deliverable') {
steps {
sh 'rm -rf /tmp/url-shortener'
sh 'rm -rf url-shortener.tgz'
sh 'rm -rf /tmp/url-shortener*'
}
}
}