1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Dustin b701281679 ci: Use SSH agent and accept host key 2018-07-26 18:42:08 -05:00
1 changed files with 4 additions and 1 deletions

3
ci/Jenkinsfile vendored
View File

@ -13,8 +13,11 @@ pipeline {
stages { stages {
stage('Publish') { stage('Publish') {
steps { steps {
sshagent(['jenkins-web']) {
sh "ssh -oStrictHostKeyChecking=no ${PUBLISH_USER}@${PUBLISH_HOST} :"
sh '. ci/publish.sh' sh '. ci/publish.sh'
} }
} }
} }
}
} }