From 6dc13675ae9e9ca740b63805c0477d05bf4c05f0 Mon Sep 17 00:00:00 2001 From: Emilia Date: Tue, 13 Feb 2024 20:48:54 -0500 Subject: [PATCH] hotfix: Jenkinsfile 2 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index dc9f9f7..84dfbaa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,13 +19,13 @@ pipeline { } stage('Archive') { steps { - zip zipFile: "dist.zip", archive: true, dir: "dist/" + zip zipFile: "dist.zip", archive: true, dir: "plate-tool-web/dist/" archiveArtifacts artifacts: "dist.zip", fingerprint: true } } stage('Transfer') { steps { - sh 'echo "put -r dist/" | sftp oracle' + sh 'echo "put -r plate-tool-web/dist/" | sftp oracle' } } stage('Deploy') {