Fixes another bug that "nobuild" tar files are not extracted.

--
PiperOrigin-RevId: 147612226
MOS_MIGRATED_REVID=147612226
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh
index bb863ba..7771b5d 100755
--- a/scripts/ci/build.sh
+++ b/scripts/ci/build.sh
@@ -503,8 +503,8 @@
     return 1
   fi
   local prod_dir="${tmpdir}"
+  tar xf "${site}" --exclude=CNAME -C "${tmpdir}"
   if [ "$nobuild" != "nobuild" ]; then
-    tar xf "${site}" --exclude=CNAME -C "${tmpdir}"
     jekyll build -s "${tmpdir}" -d "${tmpdir}/production"
     prod_dir="${tmpdir}/production"
   fi