diff --git a/Jenkinsfile b/Jenkinsfile index f971a44..99b00fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,10 @@ def getBranchNames(projectName){ jenkins.model.Jenkins.instance.getItemByFullName(projectName).getAllJobs().each { job -> String name = job.getName(); echo name; - copyArtifacts(projectName: 'gitea-sync/antos/master', target: 'build/frontend/'); + step ([$class: ' CopyArtifact', + projectName: 'gitea-sync/antos/master', + target: 'build/frontend/']); + //copyArtifacts(projectName: 'gitea-sync/antos/master', target: 'build/frontend/'); } }