[HOTFIX] HotFix for publishing
diff --git a/dev/publish_release.sh b/dev/publish_release.sh
index 83db305..15f6ea1 100755
--- a/dev/publish_release.sh
+++ b/dev/publish_release.sh
@@ -125,14 +125,14 @@
 
   echo "Created Nexus staging repository: ${staged_repo_id}"
 
-  rm -rf $HOME/.m2/repository/org/apache/zeppelin
+  #rm -rf $HOME/.m2/repository/org/apache/zeppelin
 
   # build with scala-2.10
   echo "mvn clean install -DskipTests \
     -Pscala-2.10 -Pbeam \
     ${PUBLISH_PROFILES} ${PROJECT_OPTIONS}"
-  mvn clean install -DskipTests -Pscala-2.10 -Pbeam \
-    ${PUBLISH_PROFILES} ${PROJECT_OPTIONS}
+  #mvn clean install -DskipTests -Pscala-2.10 -Pbeam \
+  #  ${PUBLISH_PROFILES} ${PROJECT_OPTIONS}
   if [[ $? -ne 0 ]]; then
     echo "Build with scala 2.10 failed."
     exit 1
@@ -144,8 +144,8 @@
   echo "mvn clean install -DskipTests \
     -Pscala-2.11 \
     ${PUBLISH_PROFILES} ${PROJECT_OPTIONS}"
-  mvn clean install -DskipTests -Pscala-2.11 \
-    ${PUBLISH_PROFILES} ${PROJECT_OPTIONS}
+  #mvn clean install -DskipTests -Pscala-2.11 \
+  #  ${PUBLISH_PROFILES} ${PROJECT_OPTIONS}
   if [[ $? -ne 0 ]]; then
     echo "Build with scala 2.11 failed."
     exit 1
@@ -158,6 +158,7 @@
   for file in $(find . -type f); do
     echo "${GPG_PASSPHRASE}" | gpg --passphrase-fd 0 --output "${file}.asc" \
       --detach-sig --armor "${file}"
+    md5 -q "${file}" > "${file}.md5"
     ${SHASUM} -a 1 "${file}" | cut -f1 -d' ' > "${file}.sha1"
   done
 
diff --git a/docs/_config.yml b/docs/_config.yml
index 372bc80..ea4eca5 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -21,8 +21,7 @@
   twitter : ASF
   feedburner : feedname
 
-ZEPPELIN_VERSION : 0.8.0
-
+ZEPPELIN_VERSION : 0.8.2
 # The production_url is only used when full-domain names are needed
 # such as sitemap.txt
 # Most places will/should use BASE_PATH to make the urls
@@ -59,7 +58,7 @@
   #   - Only the following values are falsy: ["", null, false]
   #   - When setting BASE_PATH it must be a valid url.
   #     This means always setting the protocol (http|https) or prefixing with "/"
-  BASE_PATH : /docs/0.8.0
+  BASE_PATH : /docs/0.8.2
 
   # By default, the asset_path is automatically defined relative to BASE_PATH plus the enabled theme.
   # ex: [BASE_PATH]/assets/themes/[THEME-NAME]
@@ -69,7 +68,7 @@
   #   http://s3.amazonaws.com/yoursite/themes/watermelon
   #   /assets
   #
-  ASSET_PATH : false
+  ASSET_PATH : /docs/0.8.2/assets/themes/zeppelin
 
   # These paths are to the main pages Jekyll-Bootstrap ships with.
   # Some JB helpers refer to these paths; change them here if needed.