Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
Upgrade heroku buildpack from v200 to v215
Browse files Browse the repository at this point in the history
Signed-off-by: Jenny Lea <jlea@pivotal.io>
  • Loading branch information
Brian Butz authored and butzopower committed May 27, 2020
1 parent 8eac8de commit d267638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deployment/deploy-heroku.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ cp "$CONFIG_DIR/Procfile" "$ASSETS_DIR"
###################

pushd "$ASSETS_DIR"
heroku create ${APP_HOST} --buildpack https://github.com/heroku/heroku-buildpack-ruby.git#v200 --region ${HEROKU_REGION}
heroku create ${APP_HOST} --buildpack https://github.com/heroku/heroku-buildpack-ruby.git#v215 --region ${HEROKU_REGION}
heroku addons:create heroku-postgresql:hobby-dev -a ${APP_HOST}
heroku addons:create heroku-redis:hobby-dev -a ${APP_HOST}
heroku config:set WEBSOCKET_PORT=4443 SESSION_TIME=${SESSION_TIME} -a ${APP_HOST}
Expand Down
2 changes: 1 addition & 1 deletion deployment/upgrade-heroku.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ cp "$CONFIG_DIR/config.js" "$ASSETS_DIR/client"
cp "$CONFIG_DIR/Procfile" "$ASSETS_DIR"

pushd "$ASSETS_DIR"
BUILDPACK='https://github.com/heroku/heroku-buildpack-ruby.git#v200'
BUILDPACK='https://github.com/heroku/heroku-buildpack-ruby.git#v215'
if [[ ! $(heroku buildpacks -a ${APP_HOST}) =~ ${BUILDPACK} ]]; then
heroku buildpacks:set -a ${APP_HOST} ${BUILDPACK}
fi
Expand Down

0 comments on commit d267638

Please sign in to comment.