Added 'archive' stage to Jenkins pipeline
All checks were successful
ydeng/csvbyname/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-21 11:20:03 -05:00
parent 425ef96e9b
commit 958e2b12e3

7
Jenkinsfile vendored
View File

@ -22,7 +22,12 @@ pipeline {
sh "pip install dist/*.whl"
}
}
stage("publish") {
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl'
}
}
stage("publish package") {
when {
branch '**/main'
}