测试发

This commit is contained in:
谷成伟 2024-06-20 09:56:09 +08:00
parent a066fe84b5
commit 481cac5a2e

10
Jenkinsfile vendored
View File

@ -42,14 +42,8 @@ pipeline {
expression { params.publish_type == "ui" || params.publish_type == "all" } expression { params.publish_type == "ui" || params.publish_type == "all" }
} }
steps { steps {
script { dir("$WORKSPACE/ui/dasadmin") {
def remote = [:] sh "rsync -av --delete dist/** root@192.168.109.195:/das/ui"
remote.name = "master"
remote.host = "192.168.109.195"
remote.allowAnyHosts = true
remote.user = "root"
remote.password = "84805353"
sshPut remote: remote, from: '$WORKSPACE/ui/dasadmin/**', into: '/das/ui/'
} }
} }
} }