Merge commit '0152d905022e47ccf43ebac18804fb970cb0609c'
ZeroDownTime/sns-alert-hub/pipeline/head This commit looks good Details
ZeroDownTime/sns-alert-hub/pipeline/tag This commit looks good Details

This commit is contained in:
Stefan Reimer 2023-08-14 10:27:13 +00:00
commit 9ef9c150b1
1 changed files with 2 additions and 6 deletions

View File

@ -62,10 +62,12 @@ def call(Map config=[:]) {
} }
// Push to container registry if not PR // Push to container registry if not PR
// incl. basic registry retention removing any untagged images
stage('Push') { stage('Push') {
when { not { changeRequest() } } when { not { changeRequest() } }
steps { steps {
sh 'make push' sh 'make push'
sh 'make rm-remote-untagged'
} }
} }
@ -74,12 +76,6 @@ def call(Map config=[:]) {
steps { steps {
sh 'make clean' sh 'make clean'
} }
// Basic registry retention removing untagged images if not PR only
when { not { changeRequest() } }
steps {
sh 'make rm-remote-untagged'
}
} }
} }
} }