diff --git a/Jenkinsfile b/Jenkinsfile index a2ba683..45f4b58 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -152,7 +152,10 @@ run: { sshagent(credentials: [env.DEPLOY_CRED]) { env.DEPLOY_HOST_TST.split(',').each { host -> - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${host}", env.DEPLOY_DIR, 'rsync') + sshDeploy( + srcUrl: "${env.BUILD_DIR}/", + dstUrl: "${env.DEPLOY_USER}@${host}:${env.DEPLOY_DIR}/" + ) } } }, @@ -218,7 +221,10 @@ run: { sshagent(credentials: [env.DEPLOY_CRED]) { env.DEPLOY_HOST_STS.split(',').each { host -> - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${host}", env.DEPLOY_DIR, 'rsync') + sshDeploy( + srcUrl: "${env.BUILD_DIR}/", + dstUrl: "${env.DEPLOY_USER}@${host}:${env.DEPLOY_DIR}/" + ) } } }, @@ -236,7 +242,10 @@ run: { sshagent(credentials: [env.DEPLOY_CRED]) { env.DEPLOY_HOST_ACC.split(',').each { host -> - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${host}", env.DEPLOY_DIR, 'rsync') + sshDeploy( + srcUrl: "${env.BUILD_DIR}/", + dstUrl: "${env.DEPLOY_USER}@${host}:${env.DEPLOY_DIR}/" + ) } } }, @@ -255,7 +264,10 @@ run: { sshagent(credentials: [env.DEPLOY_CRED]) { env.DEPLOY_HOST_PRD.split(',').each { host -> - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${host}", env.DEPLOY_DIR, 'rsync') + sshDeploy( + srcUrl: "${env.BUILD_DIR}/", + dstUrl: "${env.DEPLOY_USER}@${host}:${env.DEPLOY_DIR}/" + ) } } }, diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue index 5230910..e773156 100644 --- a/src/components/HelloWorld.vue +++ b/src/components/HelloWorld.vue @@ -29,6 +29,9 @@ in your IDE for a better DX
Click on the Vite and Vue logos to learn more
++ Let's change something here! +