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