Fix file path
This commit is contained in:
parent
dc6bee5acc
commit
e51b4a1e98
|
@ -28,7 +28,6 @@ jobs:
|
|||
path: ~/phpunit
|
||||
|
||||
deploy:
|
||||
working_directory: ~/repo
|
||||
docker:
|
||||
- image: ansible/ansible:ubuntu1604
|
||||
steps:
|
||||
|
@ -39,12 +38,12 @@ jobs:
|
|||
- checkout
|
||||
|
||||
- restore_cache:
|
||||
key: v1-{{ .Branch }}-{{ checksum "requirements.yml" }}
|
||||
key: v1-{{ .Branch }}-{{ checksum 'ansible/requirements.yml' }}
|
||||
|
||||
- run ansible-galaxy install -r ansible/requirements.yml
|
||||
|
||||
- save_cache:
|
||||
key: v1-{{ .Branch }}-{{ checksum "requirements.yml" }}
|
||||
key: v1-{{ .Branch }}-{{ checksum 'ansible/requirements.yml' }}
|
||||
paths:
|
||||
- '/root/.ansible/roles'
|
||||
|
||||
|
|
Loading…
Reference in a new issue