This repository has been archived by the owner on Apr 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b889209
commit 1813706
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
DIR=temp-clone | ||
|
||
# Delete any existing temporary website clone | ||
rm -rf $DIR | ||
|
||
# Clone the current repo into temp folder | ||
git clone [email protected]:JakeWharton/ActionBarSherlock.git $DIR | ||
|
||
# Move working directory into temp folder | ||
cd $DIR | ||
|
||
# Checkout and track the gh-pages branch | ||
git checkout -t origin/gh-pages | ||
|
||
# Delete everything | ||
rm -rf * | ||
|
||
# Copy website files from real repo | ||
cp -R ../website/* . | ||
|
||
# Stage all files in git and create a commit | ||
git add . | ||
git add -u | ||
git commit -m "Website at $(date)" | ||
|
||
# Push the new files up to GitHub | ||
git push origin gh-pages | ||
|
||
# Delete our temp folder | ||
cd .. | ||
rm -rf $DIR |