verbose options are broken in gothub, add a bit of clarification to script

Change-Id: I1efb82dd07b0da822a8d9facf6bb7d1f73856e01
diff --git a/jjb/shell/github-release.sh b/jjb/shell/github-release.sh
index 4c22511..1e31421 100644
--- a/jjb/shell/github-release.sh
+++ b/jjb/shell/github-release.sh
@@ -90,7 +90,8 @@
   cp $ARTIFACT_GLOB "$RELEASE_TEMP"
 
   # create release
-  gothub release -v \
+  echo "Creating Release: $GERRIT_PROJECT - $GIT_VERSION"
+  gothub release \
     --user "$GITHUB_ORGANIZATION" \
     --repo "$GERRIT_PROJECT" \
     --tag  "$GIT_VERSION" \
@@ -104,10 +105,14 @@
     sha256sum -- * > checksum.SHA256
     sha256sum -c < checksum.SHA256
 
+    echo "Checksums:"
+    cat checksum.SHA256
+
     # upload all files to the release
     for rel_file in *
     do
-      gothub upload -v \
+      echo "Uploading file: $rel_file"
+      gothub upload \
         --user "$GITHUB_ORGANIZATION" \
         --repo "$GERRIT_PROJECT" \
         --tag  "$GIT_VERSION" \