ansible-gitea-management/tasks/gitea/theme.yml

16 lines
367 B
YAML
Raw Normal View History

2022-03-04 05:15:25 +00:00
---
- name: Deploy all theme files
2022-03-28 00:53:47 +00:00
ansible.builtin.copy:
2022-03-04 05:15:25 +00:00
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
...