Jelajahi Sumber

Add deploy stage

To copy web files in httpd folder
DricomDragon 5 tahun lalu
induk
melakukan
f98221938a
1 mengubah file dengan 6 tambahan dan 0 penghapusan
  1. 6 0
      undeployed/ci/jenkinsfile

+ 6 - 0
undeployed/ci/jenkinsfile

@@ -26,5 +26,11 @@ pipeline {
                 echo "Done."
             }
         }
+        stage('Deploy') {
+            when { branch 'master' }
+            steps {
+                sh "rsync --delete --recursive --verbose web/ ${env.JOVIAN_WEB_DEPLOY_PATH}"
+            }
+        }
     }
 }