Skip to content
Snippets Groups Projects
Commit 97f59243 authored by Raphael Defosseux's avatar Raphael Defosseux
Browse files

fix(ci): helm pipeline was not recovering SPGWU tag from upstream job

parent c6b56096
No related branches found
No related tags found
No related merge requests found
......@@ -148,6 +148,10 @@ pipeline {
smfTag = params.SMF_TAG
echo "Upstream Job passed SMF_TAG to use: ${smfTag}"
}
if (params.SPGWU_TAG != null) {
spgwuTag = params.SPGWU_TAG
echo "Upstream Job passed SPGWU_TAG to use: ${spgwuTag}"
}
sh "git clean -x -d -f > /dev/null 2>&1"
sh "git fetch --prune > /dev/null 2>&1"
sh 'git checkout -f ' + upstreamTagToUse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment