diff --git a/firefox.yml b/firefox.yml index 7e78917..00839f0 100644 --- a/firefox.yml +++ b/firefox.yml @@ -30,7 +30,7 @@ - "/etc/librewolf/policies/policies.json" - name: Get sha256 - shell: wget -q https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.x86_64.AppImage.sha256 -O - | cut -d" " -f1 + shell: wget -q https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.{{ ansible_architecture }}.AppImage.sha256 -O - | cut -d" " -f1 register: command_output - set_fact: @@ -38,7 +38,7 @@ - name: Download LibreWolf as Appimage (flatpak ignores policies.json) ansible.builtin.get_url: - url: https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.x86_64.AppImage + url: https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.{{ ansible_architecture }}.AppImage dest: /usr/local/bin/librewolf checksum: sha256:{{ librewolf_sha256 }} mode: "0555"