فهرست منبع

Just deploy the _site directory to gh-pages

Aanand Prasad 11 سال پیش
والد
کامیت
db396b81ef
1فایلهای تغییر یافته به همراه2 افزوده شده و 5 حذف شده
  1. 2 5
      script/deploy-docs

+ 2 - 5
script/deploy-docs

@@ -2,7 +2,7 @@
 
 set -ex
 
-pushd docs
+pushd docs/_site
 
 export GIT_DIR=.git-gh-pages
 export GIT_WORK_TREE=.
@@ -15,8 +15,7 @@ if !(git remote | grep origin); then
   git remote add origin [email protected]:orchardup/fig.git
 fi
 
-cp .gitignore-gh-pages .gitignore
-echo ".git-gh-pages" >> .gitignore
+echo ".git-gh-pages" > .gitignore
 
 git add -u
 git add .
@@ -24,6 +23,4 @@ git add .
 git commit -m "update" || echo "didn't commit"
 git push -f origin master:gh-pages
 
-rm .gitignore
-
 popd