Skip to content

Commit

Permalink
Fixing the deploy step of circle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Hall authored Jul 11, 2018
1 parent df1e2a6 commit 0dcb1a9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,19 @@ jobs:
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout

- restore_cache:
keys: artifact-download-cache
keys:
- artifact-download-cache-{{ .Revision }}
- artifact-download-cache-

- run:
name: Get Dependencies
command: ./gradlew downloadDependencies --console plain

- save_cache:
key: artifact-download-cache
key: artifact-download-cache-{{ .Revision }}
paths:
- ~/.gradle
- run:
Expand Down

0 comments on commit 0dcb1a9

Please sign in to comment.