fix: call semantic body in stage

This commit is contained in:
Daniel Weissmall 2025-11-05 19:33:53 +03:00
parent ee3391bd7a
commit 59ca74c741

View File

@ -18,6 +18,7 @@ def semanticStage(String stageName, String containerName, Closure body) {
stage(stageName) {
container(containerName) {
sh "git config --global --add safe.directory \$(pwd)"
body()
}
}
}