From bb5a69bc5a35f1b680b20316efa5bafead65a1cf Mon Sep 17 00:00:00 2001 From: Lee Ma Date: Thu, 14 Nov 2019 20:22:20 -0500 Subject: [PATCH] remove heroku orb as we no longer use it to deploy, we instead use heroku directly (#25) --- .circleci/config.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 58aad2f..df7f728 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,4 @@ version: 2.1 -orbs: - heroku: circleci/heroku@0.0.8 workflows: deploy: jobs: @@ -11,11 +9,6 @@ workflows: - test: requires: - install - - deploy: - requires: - - lint - - test - - install jobs: lint: docker: @@ -53,12 +46,6 @@ jobs: bundle exec rake db:create RAILS_ENV=test bundle exec rake db:migrate RAILS_ENV=test bundle exec rspec - deploy: - executor: heroku/default - steps: - - heroku/install - - heroku/deploy-via-git: - only-branch: master install: docker: - image: circleci/ruby:2.5.1