summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2018-06-20 16:10:20 -0700
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2018-06-20 16:10:20 -0700
commit989134f3cc15c0bc060686475bf3a7fd14453414 (patch)
treea3b30088a42c092d8717bd906a61443160c19151 /jjb
parenta02842499696af89a363b2954589708f17f59901 (diff)
Fix release tagging noop
When the release job runs to tag the repos it should push the tags back to Gerrit. This was originally a 'noop' for testing. Change-Id: Ifbecbccda1ae123c7b8f0d59eefa727784d10acd Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r--jjb/releng/releng-release-tagging.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng/releng-release-tagging.sh b/jjb/releng/releng-release-tagging.sh
index 10c0cc8c9..e1b93518f 100644
--- a/jjb/releng/releng-release-tagging.sh
+++ b/jjb/releng/releng-release-tagging.sh
@@ -57,7 +57,7 @@ for release_file in $RELEASE_FILES; do
echo "--> Creating $tag tag for $repo at $ref"
git tag -am "$tag" $tag $ref
echo "--> Pushing tag"
- echo "[noop] git push origin $tag"
+ git push origin $tag
else
# For non-merge jobs just output the ref info.
git show -s --format="%h %s %d" $ref