ISSUE #222: post-commit ci job is broken

Descriptions of the changes in this PR:

The reason that the post commit ci job is broken is because `git remote show apache` is used in `publish-website.sh` script, but there isn't `apache` branch in CI cloned workspace. we need to change this from `apache` to `origin`.

Author: Sijie Guo <sijie@apache.org>

Reviewers: Jia Zhai <None>

This closes #223 from sijie/debug_postcommit_job, closes #222
diff --git a/website/scripts/publish-website.sh b/website/scripts/publish-website.sh
index 6d05504..2758a5d 100755
--- a/website/scripts/publish-website.sh
+++ b/website/scripts/publish-website.sh
@@ -23,7 +23,7 @@
 
 CONTENT_ROOT_DIR=$1
 TMP_DIR=/tmp/distributedlog-site-tmp
-ORIGIN_REPO=$(git remote show apache | grep 'Push  URL' | awk -F// '{print $NF}')
+ORIGIN_REPO=$(git remote show origin | grep 'Push  URL' | awk -F// '{print $NF}')
 # ORIGIN_REPO=$(git remote show origin | grep 'Push  URL' | awk -F// '{print $NF}')
 echo "ORIGIN_REPO: $ORIGIN_REPO"