-
Notifications
You must be signed in to change notification settings - Fork 39
/
publish-to-gh-pages.sh
executable file
·37 lines (29 loc) · 1.3 KB
/
publish-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
#!/bin/bash
set -ev
# run unit test (--ci: use phantomjs browser)
npm test -- --ci
# apply /#/ style router for SPA
git apply ./gh-pages-patch.diff
# run build
npm run build
# copy unit test coverage report to build folder
cp -r ./source/test/unit/results/coverage/lcov-report ./build/coverage
# rename _common to common cause github pages dose not support this
mv ./build/coverage/app/components/_common ./build/coverage/app/components/common
sed -i 's/href=\"app\/components\/_common/href=\"app\/components\/common/g' ./build/coverage/index.html
# push build folder to github
cd build
# git init
git init
# inside this git repo we'll pretend to be a new user
git config user.name "Travis CI"
git config user.email "travis@pinkyjie.com"
# The first and only commit to this new Git repo contains all the
# files present with the commit message "Deploy to GitHub Pages".
git add .
git commit -m "Deploy at `date +"%Y-%m-%d %H:%M"`"
# Force push from the current repo's master branch to the remote
# repo's gh-pages branch. (All previous history on the gh-pages branch
# will be lost, since we are overwriting it.) We redirect any output to
# /dev/null to hide any sensitive credential data that might otherwise be exposed.
git push --force --quiet "https://${GitHub_TOKEN}@${GitHub_REF}" master:gh-pages > /dev/null 2>&1