--- - job: name: deploy-dev-env project-type: pipeline dsl: | pipeline { agent { node { label "openbook_v4" } } stages { stage("deploy_dev_env") { steps { checkout([ scm: [ $class: "GitSCM", branches: [ [name: "master"] ], userRemoteConfigs: [ [url: "git@github.com:Talligent/openbook-v4-installer.git"] ] ] ]) sh(script: "./deploy-dev-env.sh") } } } }