Added archiving stage to 'Jenkinsfile'
Some checks failed
ydeng/splitmsa/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2023-04-24 09:42:10 -05:00
parent d1b3993011
commit b047b6f8fc

5
Jenkinsfile vendored
View File

@ -23,6 +23,11 @@ pipeline {
sh "splitmsa -h" sh "splitmsa -h"
} }
} }
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl'
}
}
stage("publish") { stage("publish") {
when { when {
branch '**/master' branch '**/master'