pipeline { agent any environment { PUBLISH_HOST = 'web0.pyrocufflink.blue' PUBLISH_USER = 'webapp.dchwww' } stages { stage('Publish') { steps { sh '. ci/publish.sh' } } } }