Archiving build artefacts

This commit is contained in:
reverend 2021-07-16 13:35:32 +02:00
parent 3685db6892
commit 2ac90bd35c
1 changed files with 6 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -13,7 +13,6 @@ pipeline {
} }
stages { stages {
stage('setup') { stage('setup') {
steps { steps {
script { script {
@ -40,4 +39,10 @@ pipeline {
} }
} }
} }
post {
success {
archiveArtifacts artifacts: 'dist/*.whl', fingerprint: true
}
}
} }