- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
Latest commit
executable file
·60 lines (48 loc) · 1.91 KB
/
Copy pathdeploy.sh
File metadata and controls
executable file
·60 lines (48 loc) · 1.91 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
set -e # Exit with nonzero exit code if anything fails
SOURCE_BRANCH="deploy"
TARGET_BRANCH="gh-pages"
# Pull requests and commits to other branches shouldn't try to deploy, just build to verify
if [ "$TRAVIS_PULL_REQUEST"!="false"-o"$TRAVIS_BRANCH"!="$SOURCE_BRANCH" ];then
echo"Skipping deploy; Not correct branch or just a PR"
exit 0
fi
# Save some useful information
REPO=$(git config remote.origin.url)
SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:}
SHA=$(git rev-parse --verify HEAD)
# Clone the existing gh-pages for this repo into ghpages/
# Create a new empty branch if gh-pages doesn't exist yet (should only happen on first deploy)
git clone $REPO ghpages
cd ghpages
git checkout $TARGET_BRANCH|| git checkout --orphan $TARGET_BRANCH
# Clean out existing contents (except for the .git dir)
ls -A1 | grep -v .git | xargs rm -rf ||exit 0
cd ..
# Copy over the build/compiled files from the demo app
echo"Moving over the demo dist from $DEMO_DIST"
cp -a $DEMO_DIST/. ghpages/
# Now let's go have some fun with the cloned repo
echo"Go into ghpages folder"
cd ghpages
# Adjust the baseurl href property to meet the one of github pages
echo"Adjust base href"
sed -i -e 's/base href="\/"/base href="\/angular-cli-diff\/"/g' index.html
# Configure git
echo"Configure git"
git config user.name "Travis CI"
git config user.email "$COMMIT_AUTHOR_EMAIL"
echo"Check git diff status"
# If there are no changes to the compiled out (e.g. this is a README update) then just bail.
if [ $(git status --porcelain | wc -l)-lt 1 ];then
echo"No changes to the output on this push; exiting."
exit 0
fi
# Commit the "changes", i.e. the new version.
# The delta will show diffs between new and old versions.
echo"Committing the changes"
git add -A .
git commit -m "Deploy to GitHub Pages: ${SHA}"
# Now that we're all set up, we can push.
echo"Pushing to Github"
git push $SSH_REPO$TARGET_BRANCH