diff --git a/.buildpacks b/.buildpacks deleted file mode 100644 index f85b304c..00000000 --- a/.buildpacks +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/heroku/heroku-buildpack-ruby.git -https://github.com/hashicorp/heroku-buildpack-middleman.git diff --git a/bin/deploy b/bin/deploy deleted file mode 100755 index 6dbefeb0..00000000 --- a/bin/deploy +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -sha=`git rev-parse --short HEAD` -user_name=`git config user.name | \ - cut -d ' ' -f 1 | \ - tr '[:upper:]' '[:lower:]'` -branch_name="staging-$sha-$user_name" - -git checkout -b $branch_name -git add -f Gemfile.lock -git commit -m "Deploying $sha" -git push --force staging $branch_name:master