Epoch/Jenkinsfile
2017-04-10 13:21:24 -07:00

10 lines
127 B
Groovy

pipeline {
agent any
stages {
stage('Release') {
steps {
bat 'C:/GITTEMP/release.cmd'
}
}
}
}