11 lines
269 B
YAML
11 lines
269 B
YAML
- name: Copy app to server
|
|
ansible.builtin.copy:
|
|
src: inception/
|
|
dest: "{{ dest_dir }}"
|
|
preserve: true
|
|
force: true
|
|
when: not ansible_check_mode
|
|
|
|
- name: Run the app
|
|
ansible.builtin.command: "make -C {{ dest_dir }}"
|
|
when: not ansible_check_mode |