Generate zip for website
diff --git a/Jenkinsfile-site.groovy b/Jenkinsfile-site.groovy
index 07aa9af..e6a90cc 100644
--- a/Jenkinsfile-site.groovy
+++ b/Jenkinsfile-site.groovy
@@ -23,20 +23,17 @@
         maven 'Maven 3.3.9' 
         jdk 'jdk8' 
     }
-    //label 'git-websites'
     stages {
         stage('SCM operation'){
-            agent {label 'git-websites'}
+            agent {label 'ubuntu'}
             steps {
                 checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', noTags: true, reference: '', shallow: true], [$class: 'MessageExclusion', excludedMessage: 'Automated site publishing.*'], [$class: 'RelativeTargetDirectory', relativeTargetDir: 'master-branch']], submoduleCfg: [], userRemoteConfigs: [[url: 'https://github.com/apache/incubator-netbeans-mavenutils/']]])
 
-                sh 'rm -rf asf-site-branch'
-                //sh 'mkdir asf-site-branch'
-                checkout([$class: 'GitSCM', branches: [[name: '*/asf-site']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'MessageExclusion', excludedMessage: 'Automated site publishing.*'], [$class: 'RelativeTargetDirectory', relativeTargetDir: 'asf-site-branch']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '9b041bd0-aea9-4498-a576-9eeb771411dd', url: 'https://gitbox.apache.org/repos/asf//incubator-netbeans-mavenutils/']]])
+                sh 'rm -rf stagedsite'
             }
         }
         stage('Build Site'){ 
-            agent {label 'git-websites'}
+            agent {label 'ubuntu'}
             steps {
                 
                 script {
@@ -45,7 +42,7 @@
                     for (String mvnproject in mvnfoldersforsite) {
                         dir('master-branch/'+mvnproject) {
                             sh "mvn clean install site -Dmaven.repo.local=${BASEDIR}/.repository"
-                            sh "mv target/site ${BASEDIR}/asf-site-branch/${mvnproject}/"
+                            sh "mv target/site ${BASEDIR}/stagedsite/${mvnproject}/"
                         }
                     }
                 }
@@ -54,17 +51,11 @@
             }
         }
         stage('Publish Site'){ 
-            agent {label 'git-websites'}
+            agent {label 'ubuntu'}
             steps {
-                dir('asf-site-branch') {
-                    echo 'Adding content...'
-                    sshagent (credentials: ['9b041bd0-aea9-4498-a576-9eeb771411dd']) {
-                        sh 'git add -v .'
-                        sh 'git commit -v -m "Automated site publishing by Jenkins build ${BUILD_NUMBER}'
-                        sh 'git push -v origin asf-site'
-                    }                 
-                }
-            }
-        }
+                zip zipFile:'mavenusite.zip',archive:false,dir:'stagedsite'
+                archiveArtifacts artifacts:'mavenusite.zip'
+                  }
+        }       
     }
-}
\ No newline at end of file
+}