summaryrefslogtreecommitdiff
path: root/build/scripts/ci-deployment.sh
blob: dc678c36955ef27ce68141b4ffb466c5b490b20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash -x
echo 'loading bashrc'
source ~/.bashrc

echo 'loading gemset'
rvm use ruby-2.0.0-p247@booty --create

echo 'run deployment'
git checkout master
git pull
git push heroku master
heroku run rake db:migrate --app bootycall
#bundle exec rake deploy --trace