10 lines
295 B
YAML
10 lines
295 B
YAML
---
|
|
- name: ANSISTRANO | SCP | Create release folder
|
|
file:
|
|
state: directory
|
|
path: "{{ ansistrano_release_path.stdout }}"
|
|
|
|
- name: ANSISTRANO | SCP | Deploy existing code to remote servers
|
|
copy:
|
|
src: "{{ ansistrano_deploy_from }}"
|
|
dest: "{{ ansistrano_release_path.stdout }}"
|