Add Jenkins build pipeline
dustin/receipts/pipeline/head This commit looks good Details

Dustin 2025-03-12 06:43:17 -05:00
parent a09de49fbe
commit c9424ade8d
1 changed files with 10 additions and 0 deletions

10
ci/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
@Library('containerimages')
@Library('dch')
_
buildContainerImage2(project: 'packages')
stage('Deploy') {
when(env.BRANCH_NAME == "dev/ci") {
kubeRestartDeployment()
}
}