-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove heroku orb as we no longer use it to deploy, we instead use he…
…roku directly (#25)
- Loading branch information
Showing
1 changed file
with
0 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
version: 2.1 | ||
orbs: | ||
heroku: circleci/[email protected] | ||
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 | ||
|