hotfix: Jenkinsfile 2
Gitea Scan/plate-tool/pipeline/head This commit looks good Details

This commit is contained in:
Emilia Allison 2024-02-13 20:48:54 -05:00
parent 2a463e2133
commit 6dc13675ae
Signed by: emilia
GPG Key ID: 05D5D1107E5100A1
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -19,13 +19,13 @@ pipeline {
} }
stage('Archive') { stage('Archive') {
steps { 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 archiveArtifacts artifacts: "dist.zip", fingerprint: true
} }
} }
stage('Transfer') { stage('Transfer') {
steps { steps {
sh 'echo "put -r dist/" | sftp oracle' sh 'echo "put -r plate-tool-web/dist/" | sftp oracle'
} }
} }
stage('Deploy') { stage('Deploy') {