system/tasks/bat.yml
vincent 1419eaa003
All checks were successful
continuous-integration/drone/push Build is passing
style: correct ansible lint
2022-12-10 20:25:54 +01:00

24 lines
831 B
YAML

- name: GITHUB | Get current version of bat
ansible.builtin.shell: >
set -o pipefail &&
curl -L --silent https://api.github.com/repos/sharkdp/bat/releases/latest |
grep '"tag_name":' |
sed -E 's/.*"([^"]+)".*/\1/'|sed 's/v//'
register: bat_version
args:
executable: /bin/bash
changed_when: false
failed_when: >
bat_version.rc != 0 or
not bat_version.stdout|regex_search('\w+\.\w+\.\w+')
- name: DEBIAN | Set URL to download bins
ansible.builtin.set_fact:
debian_url: "https://github.com/sharkdp/bat/releases/download/v{{ bat_version.stdout }}/bat_{{ bat_version.stdout }}_amd64.deb"
when: ansible_facts['os_family'] == "Debian"
- name: DEBIAN | Install deb from github
become: true
ansible.builtin.apt:
deb: "{{ debian_url }}"
when: ansible_facts['os_family'] == "Debian"