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

bugfix/ci-buildah
Dustin 2025-03-12 06:43:17 -05:00
parent a09de49fbe
commit 4060dea44b
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', defaultBranchName: 'master')
stage('Deploy') {
when(env.BRANCH_NAME == "master") {
kubeRestartDeployment()
}
}