diff --git a/Jenkinsfile b/Jenkinsfile index 7517c8f..4e14aa7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,5 +18,16 @@ pipeline { } } } + stage("Deliver") { + steps { + dir(directory) { + script { + sh "mkdir -p bin/" + sh "cp openwrt-imagebuilder-ath79-generic.Linux-x86_64/bin/targets/ath79/generic/*.bin bin/" + } + archiveArtifacts artifacts: "bin/*", allowEmptyArchive: false, fingerprint: false + } + } + } } }