Skip to content

Commit

Permalink
We can use ~ now
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Scott committed Jul 17, 2017
1 parent 27a807d commit fd3fbf3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
docker:
- image: circleci/ruby:2.4-node
- image: circleci/postgres:9.4.12-alpine
working_directory: /home/circleci/circleci-demo-workflows
working_directory: ~/circleci-demo-workflows
steps:
- checkout
- attach_workspace:
at: /home/circleci/circleci-demo-workflows
at: ~/circleci-demo-workflows
- restore_cache:
keys:
- v1-bundle-{{ checksum "Gemfile.lock" }}
Expand All @@ -26,11 +26,11 @@ jobs:
docker:
- image: circleci/ruby:2.4-node
- image: circleci/postgres:9.4.12-alpine
working_directory: /home/circleci/circleci-demo-workflows
working_directory: ~/circleci-demo-workflows
steps:
- checkout
- attach_workspace:
at: /home/circleci/circleci-demo-workflows
at: ~/circleci-demo-workflows
- run: bundle --path vendor/bundle
- run: bundle exec rake db:create db:schema:load
- run:
Expand All @@ -41,11 +41,11 @@ jobs:
docker:
- image: circleci/ruby:2.4-node
- image: circleci/postgres:9.4.12-alpine
working_directory: /home/circleci/circleci-demo-workflows
working_directory: ~/circleci-demo-workflows
steps:
- checkout
- attach_workspace:
at: /home/circleci/circleci-demo-workflows
at: ~/circleci-demo-workflows
- run: bundle --path vendor/bundle
- run:
name: Precompile assets
Expand All @@ -57,13 +57,13 @@ jobs:
deploy:
machine:
enabled: true
working_directory: /home/circleci/circleci-demo-workflows
working_directory: ~/circleci-demo-workflows
environment:
- HEROKU_APP: safe-wildwood-45845
steps:
- checkout
- attach_workspace:
at: /home/circleci/circleci-demo-workflows
at: ~/circleci-demo-workflows
- run:
name: Setup Heroku
command: bash .circleci/setup-heroku.sh
Expand Down

0 comments on commit fd3fbf3

Please sign in to comment.