diff --git a/Jenkinsfile b/Jenkinsfile index 56450a1..0e64602 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -77,12 +77,16 @@ spec: sh 'docker push docker.local/bme/covidok:latest' } } - container('helm'){ - post{ - always { - sh '/home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/ci/cleanup.sh' - archiveArtifacts artifacts: '/home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/covidok*tgz', followSymlinks: false, onlyIfSuccessful: true - } + stage('Archive chart'){ + archiveArtifacts artifacts: '/home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/covidok*tgz', followSymlinks: false, onlyIfSuccessful: true + } + } + } + post { + always { + node(POD_LABEL) { + container('helm') { + sh '/home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/ci/cleanup.sh' } } }