- name: clone yay repository git: repo: "{{ workstation_yay_repo }}" dest: "{{ workstation_yay_dir }}" version: origin/master become: true become_user: "{{ workstation_user }}" - name: make yay package # noqa: no-changed-when command: cmd: makepkg -fs chdir: "{{ workstation_yay_dir }}" become: true become_user: "{{ workstation_user }}" - name: install yay package # noqa: no-changed-when shell: cmd: pacman --noconfirm -U *.zst chdir: "{{ workstation_yay_dir }}"