Сокращение URL-адреса SCM (git) для добавления тега выпуска maven

По какой-то причине, когда я запускаю релиз maven, он дает мне недопустимый URL только для части тегов push. Для pom.xml commit / push он работает нормально и идет по соответствующему URL. Увидеть ниже:

[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent" && git commit --verbose -F /tmp/maven-scm-217365030.commit '/opt/jenkins-home/jobs/Section 4362/workspace/section4362-services/pom.xml' '/opt/jenkins-home/jobs/Section 4362/workspace/section4362-webapp/pom.xml' '/opt/jenkins-home/jobs/Section 4362/workspace/section4362-static/pom.xml' pom.xml
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent" && git symbolic-ref HEAD
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent" && git push ssh://[email protected]/{org}/Section4362.git maven-release-test:maven-release-test
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Tagging release with the label section4362-parent-0.3...
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace" && git tag -F /tmp/maven-scm-882610155.commit section4362-parent-0.3
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace" && git push ssh://[email protected]/{org} section4362-parent-0.3
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace

Вы можете видеть, что для push после коммитаssh://[email protected]/{org}/Section4362.git ({org} очищен мной), тогда как для push после тега, он идет вssh://[email protected]/{org} - URL должен включать/Section4362.git в конце. Все мои файлы pom указывают правильное:scm:git:ssh://[email protected]/{org}/Section4362.git

Как изменится URL-адрес для push-тега и откуда он его получит? Очевидно, что на этом этапе сборка завершается сбоем, говоря, что невозможно подключиться к репо.

Ответы на вопрос(2)

Ваш ответ на вопрос