Skip to content
This repository has been archived by the owner on Jan 11, 2019. It is now read-only.

Commit

Permalink
Use _site location to resolve circle failures
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarianski committed Jun 1, 2015
1 parent 435fefe commit 23d71a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
_site
.sass-cache
.DS_Store
playground
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ deployment:
branch: master
commands:
- TARGET=staging bundle exec jekyll build
- AWS_ACCESS_KEY_ID=${STAGING_AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY=${STAGING_AWS_SECRET_ACCESS_KEY} aws s3 sync playground s3://staging.transit.land/playground/
- AWS_ACCESS_KEY_ID=${STAGING_AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY=${STAGING_AWS_SECRET_ACCESS_KEY} aws s3 sync _site s3://staging.transit.land/playground/
production:
branch: production
commands:
- TARGET=prod bundle exec jekyll build
- AWS_ACCESS_KEY_ID=${PROD_AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY=${PROD_AWS_SECRET_ACCESS_KEY} aws s3 sync playground s3://transit.land/playground/
- AWS_ACCESS_KEY_ID=${PROD_AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY=${PROD_AWS_SECRET_ACCESS_KEY} aws s3 sync _site s3://transit.land/playground/

0 comments on commit 23d71a8

Please sign in to comment.