s396302-mlworkshops/Jenkinsfile

11 lines
168 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
sh "git checkout -f ${env.master}"
}
}
}
}