Squashed '.ci/' changes from 0821e91..f00e541

f00e541 Add cleanup step to remove untagged images by default

git-subtree-dir: .ci
git-subtree-split: f00e54179893bcaa915ddbf5c65c28adef70433a
This commit is contained in:
Stefan Reimer 2023-08-08 10:43:40 +00:00
parent c476640823
commit d8b6e1daf9
1 changed files with 7 additions and 0 deletions

View File

@ -68,6 +68,13 @@ def call(Map config=[:]) {
}
}
// Basic registry retention removing untagged images
stage('cleanup') {
when { not { changeRequest() } }
steps {
sh 'make rm-remote-untagged'
}
}
}
}
}