Try downloading remote flatpak package for installation

This commit is contained in:
exu 2024-11-28 09:05:43 +01:00
parent 2256f45c19
commit b3e14252f1

View File

@ -228,12 +228,20 @@
tags: packages
become: true
- name: Download remote flatpak packages
ansible.builtin.get_url:
url: "{{ item }}"
dest: ./
loop:
- https://github.com/Elleo/pied/releases/latest/download/com.mikeasoft.pied.flatpak
tags: packages
- name: Install flatpak packages
community.general.flatpak:
name: "{{ item }}"
state: present
loop:
- https://github.com/Elleo/pied/releases/latest/download/com.mikeasoft.pied.flatpak
- ./com.mikeasoft.pied.flatpak
tags: packages
become: true