Make the .zip in the right directory.

This commit is contained in:
git 2021-02-14 14:49:33 +01:00
parent edca9cdc5c
commit cbfadcd53c
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

2
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ pipeline {
steps {
echo 'Deploying....'
dir('cmake-build-release') { archiveArtifacts artifacts:'*.deb, *.rpm, *.tar.gz, *.sh', fingerprint: false }
zip zipFile: './Yerbacon-ARM_lpkg.zip', overwrite: true, archive: true, glob: "./*.tar.gz, ./*.sh"
dir('cmake-build-release-arm') { zip zipFile: './Yerbacon-ARM_lpkg.zip', archive: true, glob: "*.tar.gz, *.sh" }
dir('cmake-build-release-win32') { archiveArtifacts artifacts:'*.exe', fingerprint: false }
}
}