Skip to content

Commit

Permalink
Fix attach_workspace "at" path
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Scott committed Jul 9, 2017
1 parent ed98ba9 commit 06c3ec5
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ jobs:
- image: circleci/postgres:9.4.12-alpine
working_directory: /home/circleci/circleci-demo-workflows
steps:
- run: ls -aslh /home/circleci/circleci-demo-workflows
- attach_workspace:
at: /home/circleci/circleci-demo-workflows
- run: ls -aslh /home/circleci/circleci-demo-workflows
- restore_cache:
keys:
- v1-bundle-{{ checksum "Gemfile.lock" }}
Expand All @@ -41,9 +39,9 @@ jobs:
working_directory: /home/circleci/circleci-demo-workflows
steps:
- attach_workspace:
at: ~/circleci-demo-workflows
at: /home/circleci/circleci-demo-workflows
- attach_workspace:
at: ~/circleci-demo-workflows/vendor/bundle
at: vendor/bundle
- run: bundle --path vendor/bundle
- run: bundle exec rake db:create db:schema:load
- run:
Expand All @@ -57,9 +55,9 @@ jobs:
working_directory: /home/circleci/circleci-demo-workflows
steps:
- attach_workspace:
at: ~/circleci-demo-workflows
at: /home/circleci/circleci-demo-workflows
- attach_workspace:
at: ~/circleci-demo-workflows/vendor/bundle
at: vendor/bundle
- run: bundle --path vendor/bundle
- run:
name: Precompile assets
Expand All @@ -76,11 +74,11 @@ jobs:
- HEROKU_APP: still-shelf-38337
steps:
- attach_workspace:
at: ~/circleci-demo-workflows
at: /home/circleci/circleci-demo-workflows
- attach_workspace:
at: ~/circleci-demo-workflows/vendor/bundle
at: vendor/bundle
- attach_workspace:
at: ~/circleci-demo-workflows/public/assets
at: public/assets
- run:
name: Setup Heroku
command: bash .circleci/setup-heroku.sh
Expand Down

0 comments on commit 06c3ec5

Please sign in to comment.