Skip to content

Commit 444df76

Browse files
committed
dev
1 parent 47105ad commit 444df76

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Jenkinsfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ pipeline {
3030
branch 'dev'
3131
}
3232
steps {
33-
sh """
34-
echo "Deploy dev"
35-
"""
33+
// sh """
34+
// echo "Deploy dev"
35+
// """
36+
echo "----WORKSPACE----: ${WORKSPACE}"
37+
sshagent(credentials : ['583a9537-f155-4cbd-b8ad-103ab53eed0c']) {
38+
sh "scp ${WORKSPACE}/build [email protected]:/data/tmp/build/dev"
39+
}
3640
}
3741
}
3842
stage('Deploy product') {

0 commit comments

Comments
 (0)