Merge pull request #3291 from hashicorp/sethvargo/faster_deploy

Use a faster middleman deploy
This commit is contained in:
Paul Hinze 2015-09-21 08:39:29 -05:00
commit e7f33bf523
1 changed files with 31 additions and 5 deletions

View File

@ -1,12 +1,38 @@
#!/usr/bin/env bash
#!/bin/bash
# Set the tmpdir
if [ -z "$TMPDIR" ]; then
TMPDIR="/tmp"
fi
# Create a temporary build dir and make sure we clean it up. For
# debugging, comment out the trap line.
DEPLOY=`mktemp -d $TMPDIR/terraform-www-XXXXXX`
trap "rm -rf $DEPLOY" INT TERM EXIT
# Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
# Change into that directory
cd $DIR
# Copy into tmpdir
cp -R $DIR/website/ $DEPLOY/
# Push the subtree (force)
git push heroku `git subtree split --prefix website HEAD`:master --force
# Change into that directory
pushd $DEPLOY &>/dev/null
# Ignore some stuff
touch .gitignore
echo ".sass-cache" >> .gitignore
echo "build" >> .gitignore
# Add everything
git init -q .
git add .
git commit -q -m "Deploy by $USER"
git remote add heroku git@heroku.com:terraform-www.git
git push -f heroku master
# Go back to our root
popd &>/dev/null