diff --git a/job-templates.yml b/job-templates.yml index c6a3dc6..338acc2 100644 --- a/job-templates.yml +++ b/job-templates.yml @@ -75,7 +75,7 @@ render-pipelines-to-branch: # End of install-yq.sh # Begin of render-pipelines-branch.sh - - "#Replace main branch with current branch\nfor file in pipelines/*.yml\n do \n sed -i \"s;ref: 'main';ref: '$CI_COMMIT_BRANCH';g\" ./$file\ndone\n" + - "#Replace main branch with current branch\nfor file in pipelines/*.yml\n do \n sed -i \"s;ref: main;ref: '$CI_COMMIT_BRANCH';g\" ./$file\ndone\n" # End of render-pipelines-branch.sh # Begin of commit-and-push-changes.sh diff --git a/scripts/render-pipelines-branch.sh b/scripts/render-pipelines-branch.sh index 65f1937..835a890 100644 --- a/scripts/render-pipelines-branch.sh +++ b/scripts/render-pipelines-branch.sh @@ -4,5 +4,5 @@ for file in pipelines/*.yml do - sed -i "s;ref: 'main';ref: '$CI_COMMIT_BRANCH';g" ./$file + sed -i "s;ref: main;ref: '$CI_COMMIT_BRANCH';g" ./$file done