浏览代码

Add deploy stage

To copy web files in httpd folder
DricomDragon 5 年之前
父节点
当前提交
f98221938a
共有 1 个文件被更改,包括 6 次插入0 次删除
  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}"
+            }
+        }
     }
 }