Jenkinsfile: Create artifacts directory
This commit is contained in:
parent
12e9256dcf
commit
41a04188a2
|
|
@ -75,6 +75,9 @@ pipeline {
|
||||||
script {
|
script {
|
||||||
build_and_deploy()
|
build_and_deploy()
|
||||||
}
|
}
|
||||||
|
dir ('tmp/artifacts') {
|
||||||
|
zip archive: true, dir: "${WORKSPACE}/tmp/build-${IMAGE_TYPE}", glob: "*", zipFile: "${PACKAGE_NAME}-${BUILD_VERSION}-${machine}-${IMAGE_TYPE}.zip"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // stages
|
} // stages
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue