diff options
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 364adf7..ab804eb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,12 +5,13 @@ pipeline { stage('Build Plugins') { steps { sh 'mkdir -p out/ && make INSTDIR=out install' + sh 'tar -C out -czvf plugins.tar.gz .' } } } post { always { - archiveArtifacts artifacts: 'out/*', fingerprint: false + archiveArtifacts artifacts: 'plugins.tar.gz', fingerprint: false } } } |