Skip to content
This repository has been archived by the owner on Apr 19, 2018. It is now read-only.

Commit

Permalink
Add website deploy script.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Apr 15, 2013
1 parent b889209 commit 1813706
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions deploy_website.sh
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

0 comments on commit 1813706

Please sign in to comment.