--- - name: Deploy all theme files ansible.builtin.copy: src: "var/lib/gitea/custom/public/css/{{ item }}" dest: "/var/lib/gitea/custom/public/css/{{ item }}" mode: '0644' owner: git group: git with_items: - theme-carbonred.css - theme-darkred.css - theme-gitea-blue.css - theme-gitea-modern.css - theme-pitchblack.css ...