mirror of
https://gitlab.com/hoggit/developers/hoggit.git
synced 2026-07-16 14:32:25 +00:00
22 lines
274 B
Groovy
22 lines
274 B
Groovy
pipeline {
|
|
agent {
|
|
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
when {
|
|
branch 'production'
|
|
}
|
|
|
|
steps {
|
|
|
|
}
|
|
}
|
|
}
|
|
} |