Improve cleanup flow

This commit is contained in:
Stefan Reimer 2023-08-14 10:27:07 +00:00
parent 8df60afa12
commit cdc32e01ea
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
// incl. basic registry retention removing any untagged images
stage('Push') {
when { not { changeRequest() } }
steps {
sh 'make push'
sh 'make rm-remote-untagged'
}
}
@ -74,12 +76,6 @@ def call(Map config=[:]) {
steps {
sh 'make clean'
}
// Basic registry retention removing untagged images if not PR only
when { not { changeRequest() } }
steps {
sh 'make rm-remote-untagged'
}
}
}
}