ansible-role-workflows-common/tasks/main.yaml

27 lines
569 B
YAML

---
- name: Create temporary build directory
tempfile:
state: directory
suffix: build
register: target_path
- name: Generate taskdefs
template:
src: "templates/taskdefs.json.j2"
dest: "{{ target_path }}taskdefs.json"
- name: Upload task definitions
uri:
url: "{{ conductor_taskdef_endpoint }}"
method: POST
src: "{{ target_path }}taskdefs.json"
body_format: json
status_code: 204
follow_redirects: yes
- name: Cleanup target_path
file:
path: "{{ target_path }}"
state: absent
when: target_path is defined