Also generate a PHP script archive

This commit is contained in:
zontreck 2025-01-30 20:39:05 -07:00
parent cded93d569
commit 4a5cb51b81

5
Jenkinsfile vendored
View file

@ -24,12 +24,17 @@ pipeline {
cd build/web
tar -cvf ../../web.tgz .
cd ../../php
tar -cvf ../php.tgz .
cd ..
'''
}
post {
always {
archiveArtifacts artifacts: "web.tgz"
archiveArtifacts artifacts: "php.tgz"
cleanWs()
}