role_drone_runner_exec/tasks/installation-service.yml

32 lines
852 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
# tasks file for drone_runner_exec
- name: Get version file
ansible.builtin.uri:
url: "{{ drone_runner_exec_url }}"
return_content: true
follow_redirects: all
register: releases
- name: Extract URL
ansible.builtin.set_fact:
browser_download_url: >
{{
releases.json.assets |
selectattr('browser_download_url', 'search', 'linux') |
selectattr('browser_download_url', 'search', drone_runner_exec_architecture) |
map(attribute='browser_download_url')
}}
- name: Install runner
ansible.builtin.unarchive:
src: "{{ browser_download_url | first }}"
dest: /usr/local/bin/
remote_src: true
list_files: true
owner: "{{ drone_runner_exec_user }}"
group: "{{ drone_runner_exec_group }}"
mode: u=rwX,g=rX,o=rX
become: true
notify: Restart drone-runner-exec.service