Sha256: 3c65fec1ca69beb799fc51e522475867a64f5735ea560c5b52bacd90d4aa34c4

Contents?: true

Size: 494 Bytes

Versions: 14

Compression:

Stored size: 494 Bytes

Contents

#!/bin/bash

HEROKU_DEPLOYMENT_BRANCH=heroku-deployment

CURRENT_BRANCH=`git symbolic-ref --short HEAD`
git checkout -b $HEROKU_DEPLOYMENT_BRANCH
bundle install
sed -i "" -e "s/^\/Gemfile.lock/# \/Gemfile.lock/g" .gitignore
cp spec/rails_app/bin/webpack* bin/
git add .gitignore
git add Gemfile.lock
git add bin/webpack*
git commit -m "Add Gemfile.lock and webpack"
git push heroku ${HEROKU_DEPLOYMENT_BRANCH}:master --force
git checkout $CURRENT_BRANCH
git branch -D $HEROKU_DEPLOYMENT_BRANCH

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
activity_notification-2.3.3 bin/deploy_on_heroku.sh
activity_notification-2.3.2 bin/deploy_on_heroku.sh
activity_notification-2.3.1 bin/deploy_on_heroku.sh
activity_notification-2.3.0 bin/deploy_on_heroku.sh
activity_notification-2.2.4 bin/deploy_on_heroku.sh
activity_notification-2.2.3 bin/deploy_on_heroku.sh
activity_notification-2.2.2 bin/deploy_on_heroku.sh
activity_notification-2.2.1 bin/deploy_on_heroku.sh
activity_notification-2.2.0 bin/deploy_on_heroku.sh
activity_notification-2.1.4 bin/deploy_on_heroku.sh
activity_notification-2.1.3 bin/deploy_on_heroku.sh
activity_notification-2.1.2 bin/deploy_on_heroku.sh
activity_notification-2.1.1 bin/deploy_on_heroku.sh
activity_notification-2.1.0 bin/deploy_on_heroku.sh