Files
coal/Jenkinsfile
2023-08-04 14:19:11 +08:00

33 lines
297 B
Groovy

pipeline{
agent any
options {
disableConcurrentBuilds()
}
triggers {
pollSCM 'H/3 * * * * '
}
stages{
stage("打包"){
steps{
sh "docker build . -t coal:${env.BRANCH_NAME}"
}
}
}
}