forked from jdleesmiller/latex-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy-to-gh-pages.sh
41 lines (34 loc) · 966 Bytes
/
deploy-to-gh-pages.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Copy the slides and the exercise files referenced from the slides from the
# master branch to the gh-pages branch to make them accessible at
# http://jdleesmiller.github.io/latex-course/...
#
if ! git diff-index --quiet HEAD --; then
echo "local changes -- please commit all local changes and untracked files"
exit
fi
# build / bundle files that we need to put on the website
cd en
make latex-course.tgz
cd ..
# stage the website in the deploy directory
rm -rf deploy
mkdir deploy
cd deploy
mkdir en
cd en
mv ../../en/latex-course.tgz .
tar xzf latex-course.tgz
rm latex-course.tgz
cd ..
echo '<html><head><title>latex-course</title></head><body><a href="https://github.com/jdleesmiller/latex-course">Please see repository.</a></body></html>' > index.html
cd ..
# destroy current content of the gh-pages branch
git checkout gh-pages
git rm -rf .
rm -rf en
mv deploy/* .
rmdir deploy
git add .
git commit -am "deploy-to-gh-pages"
git push origin --all