VOL-4905 - Deploy new voltctl version.

jjb/github-release/voltha.yaml
------------------------------
  o Remove inlined single quotes around version string.

Change-Id: I94374acdbeb97bf4734e602681209451300cbe22
diff --git a/jjb/shell/github-release.sh b/jjb/shell/github-release.sh
index da99794..a7d412c 100755
--- a/jjb/shell/github-release.sh
+++ b/jjb/shell/github-release.sh
@@ -656,7 +656,7 @@
         echo "[SKIP] dry run"
     else
         func_echo "my_gh release create '$version' ${args[@]} ${payload[@]}"
-        my_gh 'release' 'create' "'$version'" "${args[@]}" "${payload[@]}"
+        my_gh 'release' 'create' "$version" "${args[@]}" "${payload[@]}"
         set +x
     fi
     popd >/dev/null
@@ -989,13 +989,13 @@
             --tag)
                 local val
                        get_argv_tag val
-                args+=("'$val'")       # No switch, pass inline
+                args+=("$val")       # No switch, pass inline
                 ;;
 
             --title)
                 local val
                 get_argv_name val
-                args+=('--title' "'$val'")
+                args+=('--title' "$val")
                 ;;
 
             *) args+=("$arg") ;;