Update the Jenkinsfile to use steps

The previous commit tried to change the Jenkinsfile to a declaractive, instead
of scripted, pipeline, and this was missed.
This commit is contained in:
Tom Willemse 2020-10-09 22:20:16 -07:00
parent 84725806f5
commit 1fae33754e

14
Jenkinsfile vendored
View file

@ -3,15 +3,19 @@ pipeline {
stages {
stage('Build') {
sh 'make'
stash includes: 'public/*', name: 'public_html'
steps {
sh 'make'
stash includes: 'public/*', name: 'public_html'
}
}
stage('Deploy') {
unstash 'public_html'
steps {
unstash 'public_html'
withCredentials([file(credentialsId: 'ryuslash.org-deploy-key', variable: 'KEY_FILE')]) {
sh 'rsync -e "ssh -p 4511 -i $KEY_FILE" -v -c -r --delete public/ "site@ryuslash.org:public_html/"'
withCredentials([file(credentialsId: 'ryuslash.org-deploy-key', variable: 'KEY_FILE')]) {
sh 'rsync -e "ssh -p 4511 -i $KEY_FILE" -v -c -r --delete public/ "site@ryuslash.org:public_html/"'
}
}
}
}