Update 'Jenkinsfile'
Some checks failed
gitea-sync/antos-appimage/pipeline/head There was a failure building this commit

This commit is contained in:
dany 2022-09-29 23:01:21 +02:00
parent 64095167f0
commit 3415159873

6
Jenkinsfile vendored
View File

@ -4,7 +4,11 @@ def copyArtifactsByBranches(projectName){
Iterator<?> iterator = jobs.iterator();
while (iterator.hasNext()) {
def job = iterator.next();
copyArtifacts(projectName: 'gitea-sync/antos/' + job.getName(), target: 'build/frontend/' + job.getName());
step([$class: 'CopyArtifact',
projectName: 'gitea-sync/antos/' + job.getName(),
target: 'build/frontend/' + job.getName()
]);
//copyArtifacts(projectName: 'gitea-sync/antos/' + job.getName(), target: 'build/frontend/' + job.getName());
}
return null;
}