From 104f09e0df39de6e8a3157071d96f1aa89c29a6d Mon Sep 17 00:00:00 2001 From: Tyson Gach Date: Thu, 9 Mar 2017 11:23:07 -0500 Subject: [PATCH] Remove Heroku staging deployment --- .buildpacks | 2 -- bin/deploy | 12 ------------ 2 files changed, 14 deletions(-) delete mode 100644 .buildpacks delete mode 100755 bin/deploy 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