Release wskdeploy 0.9.8 under Apache (#230)

diff --git a/tools/config.json b/tools/config.json
index c12e095..aa6fa5c 100644
--- a/tools/config.json
+++ b/tools/config.json
@@ -1,24 +1,18 @@
 {
-  "publish_stage": "false",
-  "update_doc": "true",
+  "publish_stage": "true",
+  "update_doc": "false",
   "stage_url": "https://dist.apache.org/repos/dist/dev/incubator/openwhisk",
   "release_url": "https://dist.apache.org/repos/dist/release/incubator/openwhisk",
   "versioning": {
-    "version": "0.9.0-incubating",
+    "version": "0.9.8-incubating",
     "pre_release_version": "rc1"
   },
   "RepoList": [
-    "openwhisk-client-go",
-    "openwhisk-cli"
+    "openwhisk-wskdeploy"
   ],
-  "openwhisk_client_go": {
-    "hash": "d7cee96",
-    "repository": "https://github.com/apache/incubator-openwhisk-client-go.git",
-    "branch": "master"
-  },
-  "openwhisk_cli": {
-    "hash": "0807de2",
-    "repository": "https://github.com/apache/incubator-openwhisk-cli.git",
+  "openwhisk_wskdeploy": {
+    "hash": "cd3c3c4",
+    "repository": "https://github.com/apache/incubator-openwhisk-wskdeploy.git",
     "branch": "master"
   }
 }
diff --git a/tools/package_doc.sh b/tools/package_doc.sh
index f14f129..863474d 100755
--- a/tools/package_doc.sh
+++ b/tools/package_doc.sh
@@ -23,9 +23,11 @@
 SCRIPTDIR="$(cd $(dirname "$0")/ && pwd)"
 source "$SCRIPTDIR/load_config.sh" $1 $2 $3
 
-mkdir -p $CURRENT_VERSION_DIR
+if [ "$UPDATE_DOC" == "true" ] ; then
+    mkdir -p $CURRENT_VERSION_DIR
 
-# Copy the documents for the current release into the $CURRENT_VERSION_DIR directory
-PARENTDIR="$(dirname "$SCRIPTDIR")"
-mkdir -p ${CURRENT_VERSION_DIR}/doc
-cp $PARENTDIR/releases/$version/* ${CURRENT_VERSION_DIR}/doc/
+    # Copy the documents for the current release into the $CURRENT_VERSION_DIR directory
+    PARENTDIR="$(dirname "$SCRIPTDIR")"
+    mkdir -p ${CURRENT_VERSION_DIR}/doc
+    cp $PARENTDIR/releases/$version/* ${CURRENT_VERSION_DIR}/doc/
+fi