10
0
Fork 0

Add deliver stage
gitea-kspace/openwrt-camera-image/pipeline/head There was a failure building this commit Details

This commit is contained in:
Madis Mägi 2021-10-27 19:22:01 +03:00
parent 79e39d8ae0
commit a5d3e25012
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored
View File

@ -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
}
}
}
}
}