This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/plays/predeploy/lib/hooks.yml

9 lines
237 B
YAML

---
- name: Check if a custom pre-deploy playbook exists
stat:
path: "{{ app_config_root }}/plays/predeploy.yml"
register: pre_deploy_yml
- include: "{{ app_config_root }}/plays/predeploy.yml"
when: pre_deploy_yml.stat.exists