X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Frelease-job.sh;h=6c280d20c7de6c8ae62af00727fe7152fa824752;hb=refs%2Ftags%2Fv0.89.5;hp=792cbdd3cf3b088b86b3f63dde93bac1f2e25234;hpb=f02f2f445600af0b0b116bee97bf5d76629ad4b4;p=releng%2Fglobal-jjb.git diff --git a/shell/release-job.sh b/shell/release-job.sh index 792cbdd3..6c280d20 100644 --- a/shell/release-job.sh +++ b/shell/release-job.sh @@ -365,11 +365,12 @@ tag-git-repo(){ fi git config user.name "$RELEASE_USERNAME" git config user.email "$RELEASE_EMAIL" + echo "INFO: push tag: $GIT_TAG" + git push origin "$GIT_TAG" # Check if sentinal file exists if [[ -f .testhash ]]; then - git push origin "${GERRIT_BRANCH}" "$GIT_TAG" - else - git push origin "$GIT_TAG" + echo "INFO: push code bundle" + git push origin "HEAD:${GERRIT_REFSPEC}" fi fi fi @@ -481,6 +482,8 @@ maven_release_file(){ git fetch "$PATCH_DIR/${PROJECT//\//-}.bundle" git merge --ff-only FETCH_HEAD + # print last few changes to see how the bundle is applied + git log --graph --all --decorate --pretty=oneline -n10 nexus_release tag-git-repo }