mirror of
https://gitlab.com/hoggit/developers/hoggit.git
synced 2025-11-10 15:43:28 +00:00
22 lines
274 B
Groovy
22 lines
274 B
Groovy
pipeline {
|
|
agent {
|
|
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
when {
|
|
branch 'production'
|
|
}
|
|
|
|
steps {
|
|
|
|
}
|
|
}
|
|
}
|
|
} |